Skip to content

Commit

Permalink
Try a newer version of GCC on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfpf committed Apr 25, 2024
1 parent a1f7e65 commit 54206ae
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,20 @@ env:
PKG_CONFIG_PATH: /usr/local/share/pkgconfig

jobs:
c:
name: ${{ matrix.os }} / C
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, ubuntu-22.04]
c_macos:
name: macos-12 / C
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- run: ./run.sh
- run: cd tests && CC=gcc-13 make && ./tests
c_linux:
name: ubuntu-22.04 / C
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: ./run.sh
- run: cd tests && CC=gcc-11 make && ./tests
- run: cd tests && make && ./tests
python:
name: ${{ matrix.os }} / Python
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 54206ae

Please sign in to comment.