Add a final fix for MFAv2 where we compute the gid ourselves. #115
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: macos-arm-unit-tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: mac-mini-m2 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: configure & build | |
run: | | |
cd lib && ./configure --enable-mps && cd .. | |
make -j 16 -C lib | |
make -j 16 -C bin | |
make -j 16 -C test | |
make -j 16 -C test/int/nnc | |
- name: tests | |
run: | | |
make -C test test | |
- name: integration tests | |
run: | | |
make -C test/int/nnc test |