diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 22:48:50 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 22:48:50 -0500 |
commit | 647dd39337f25781409d207870109b38eed0b045 (patch) | |
tree | 8373c6ab8d9c889bb0a176f983dde89bec42709f /.github | |
parent | Attempt to add autoconf (diff) | |
download | locusts-647dd39337f25781409d207870109b38eed0b045.tar locusts-647dd39337f25781409d207870109b38eed0b045.tar.gz locusts-647dd39337f25781409d207870109b38eed0b045.tar.bz2 locusts-647dd39337f25781409d207870109b38eed0b045.tar.lz locusts-647dd39337f25781409d207870109b38eed0b045.tar.xz locusts-647dd39337f25781409d207870109b38eed0b045.tar.zst locusts-647dd39337f25781409d207870109b38eed0b045.zip |
Add autoconf to macOS
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/c.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index 9b37af1..0618608 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -30,10 +30,13 @@ jobs: msystem: UCRT64 update: true install: autoconf mingw-w64-ucrt-x86_64-gcc + - name: Install autoconf on macOS + if: matrix.os == 'macos-latest' + run: brew install autoconf - name: Run Autoconf - run: autoreconf -fi + run: sh -c autoreconf -fi - name: Configure - run: ./configure + run: sh -c ./configure - name: Build run: make |