From f2babad32a71d49332d3dc3ca66e342e6f556fde Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 5 Dec 2023 21:55:53 +0700 Subject: [PATCH] ci: Build and check with the autoconf build system. --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f68148c81..f9ded704c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,6 +7,27 @@ env: BUILD_TYPE: Release jobs: + build-autoconf: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, ubuntu-latest] + + steps: + - uses: actions/checkout@v4 + + - name: Configure + shell: bash + run: ./configure + + - name: Build + shell: bash + run: make test -j4 + + - name: Check + shell: bash + run: make check + build-cmake: runs-on: ${{ matrix.os }} strategy: