aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-08-06 22:48:50 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-08-06 22:48:50 -0500
commit647dd39337f25781409d207870109b38eed0b045 (patch)
tree8373c6ab8d9c889bb0a176f983dde89bec42709f
parentAttempt to add autoconf (diff)
downloadlocusts-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>
-rw-r--r--.github/workflows/c.yml7
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