diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 22:58:20 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 23:04:12 -0500 |
commit | 2fcd13e96bf7d989690fa3a332b050684ac0f0bc (patch) | |
tree | a5d777e5ae180e2cf319f9dd4a7731b6d400813d /.github/workflows/c.yml | |
parent | Add autoconf to macOS (diff) | |
download | locusts-2fcd13e96bf7d989690fa3a332b050684ac0f0bc.tar locusts-2fcd13e96bf7d989690fa3a332b050684ac0f0bc.tar.gz locusts-2fcd13e96bf7d989690fa3a332b050684ac0f0bc.tar.bz2 locusts-2fcd13e96bf7d989690fa3a332b050684ac0f0bc.tar.lz locusts-2fcd13e96bf7d989690fa3a332b050684ac0f0bc.tar.xz locusts-2fcd13e96bf7d989690fa3a332b050684ac0f0bc.tar.zst locusts-2fcd13e96bf7d989690fa3a332b050684ac0f0bc.zip |
Give up on Windows
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/c.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index 0618608..6bce3d0 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -19,7 +19,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + # TODO: Add Windows support + os: [ubuntu-latest, macos-latest] steps: - name: Checkout repository uses: actions/checkout@v4 @@ -29,14 +30,14 @@ jobs: with: msystem: UCRT64 update: true - install: autoconf mingw-w64-ucrt-x86_64-gcc + install: autotools mingw-w64-ucrt-x86_64-gcc - name: Install autoconf on macOS if: matrix.os == 'macos-latest' - run: brew install autoconf + run: brew install automake libtool - name: Run Autoconf - run: sh -c autoreconf -fi + run: autoreconf -fi - name: Configure - run: sh -c ./configure + run: ./configure --disable-static - name: Build run: make |