From 2fcd13e96bf7d989690fa3a332b050684ac0f0bc Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 6 Aug 2024 22:58:20 -0500 Subject: Give up on Windows Signed-off-by: Matt Strapp --- .github/workflows/c.yml | 11 ++++++----- 1 file 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 -- cgit v1.2.3