aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/c.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/c.yml')
-rw-r--r--.github/workflows/c.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml
index 0952950..9b37af1 100644
--- a/.github/workflows/c.yml
+++ b/.github/workflows/c.yml
@@ -13,6 +13,30 @@ on:
- ".github/workflows/c.yml"
jobs:
+ autoconf:
+ name: Autoconf Builds
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ubuntu-latest, macos-latest, windows-latest]
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ - name: Setup MSYS2 on Windows
+ if: matrix.os == 'windows-latest'
+ uses: msys2/setup-msys2@v2
+ with:
+ msystem: UCRT64
+ update: true
+ install: autoconf mingw-w64-ucrt-x86_64-gcc
+ - name: Run Autoconf
+ run: autoreconf -fi
+ - name: Configure
+ run: ./configure
+ - name: Build
+ run: make
+
cmake:
name: CMake Builds
runs-on: ${{ matrix.os }}