Set necessary env vars #111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Quality Assurance | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-macos: | |
name: macOS (${{ matrix.configure.label }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-14] | |
configure: | |
- {label: "with parser generation", opt: "--enable-parser-generation" } | |
- {label: "wo curl", opt: "--without-curl" } | |
- {label: "wo lua", opt: "--without-lua" } | |
- {label: "wo maxmind", opt: "--without-maxmind" } | |
- {label: "wo libxml", opt: "--without-libxml" } | |
- {label: "wo geoip", opt: "--without-geoip" } | |
- {label: "wo ssdeep", opt: "--without-ssdeep" } | |
- {label: "with lmdb", opt: "--with-lmdb" } | |
- {label: "with pcre2", opt: "--with-pcre2" } | |
steps: | |
- name: Setup Dependencies | |
# curl, pcre2 not installed because they're already | |
# included in the image | |
run: | | |
brew install autoconf \ | |
automake \ | |
libtool \ | |
yajl \ | |
lmdb \ | |
lua \ | |
libmaxminddb \ | |
libxml2 \ | |
ssdeep \ | |
pcre \ | |
bison \ | |
flex | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: build geoip | |
run: | | |
git clone https://github.com/maxmind/geoip-api-c.git | |
cd geoip-api-c | |
autoreconf --install | |
./configure --disable-dependency-tracking --disable-silent-rules | |
make install | |
export LDFLAGS="-L/usr/local/lib" | |
export CPPFLAGS="-I/usr/local/include" | |
export CFLAGS="-I/usr/local/include" | |
- name: build.sh | |
run: ./build.sh | |
- name: configure | |
run: ./configure ${{ matrix.configure.opt }} --enable-assertions=yes | |
- uses: ammaraskar/gcc-problem-matcher@master | |
- name: make | |
run: make -j `sysctl -n hw.logicalcpu` | |
- name: check | |
run: make check |