Skip to content

Commit

Permalink
Some other build environments
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbonfield committed Jun 25, 2024
1 parent 7608b54 commit c79c40f
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/unix-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Various unix builds
name: unix CI
on: [push, pull_request]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]

defaults:
run:
shell: bash {0}


steps:
- name: Checkout
uses: actions/checkout@v4

- name: Mac install dependencies
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install autoconf automake libtool
- name: Compile
run: |
autoreconf -i
./configure CC="gcc" CFLAGS="-g -O3 -Wall -Werror"
make -j32
- name: Check
run: |
make check || cat tests/test-suite.log

0 comments on commit c79c40f

Please sign in to comment.