Skip to content

Commit

Permalink
Add ubuntu and mac builds too.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbonfield committed Jun 25, 2024
1 parent 6e4e8c7 commit 62d112f
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/unix-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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

# MacOS. We validate compilation of x86_64 and arm64, but only
# test arm64. This will also be using clang by default
- name: macOS specific
if: runner.os == 'macOS'
run: |
brew install autoconf automake libtool
autoreconf -i
./configure CFLAGS="-g -O3 -Wall -Werror -arch arm64 -arch x86_64"
# A slower build and test with address and undefined behaviour sanitizers
- name: Ubuntu-latest using gcc with sanitizers
if: runner.os == 'Linux'
run: |
autoreconf -i
./configure CC="gcc -fsanitize=address,undefined"
- name: Compile
run: |
make -j6
- name: Check
run: |
make check || cat tests/test-suite.log
1 change: 1 addition & 0 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# A faster alternative to AppVeyor
name: Windows/MinGW-W64
on: [push, pull_request]

Expand Down

0 comments on commit 62d112f

Please sign in to comment.