Skip to content

Commit

Permalink
ci: Build and check with the autoconf build system.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and zayenz committed Dec 6, 2023
1 parent bc31c31 commit f2babad
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f2babad

Please sign in to comment.