Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde committed Jul 18, 2024
1 parent 3cdc611 commit 79656dd
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/Macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
fail-fast: false
matrix:
gcc: [10, 11, 12, 13]
version: [9, 10, 11, 12, 13, 14]

steps:
- name: Checkout
Expand All @@ -82,10 +82,13 @@ jobs:
cmakeVersion: ^3
ninjaVersion: ^1

- name: ⬇️ Setup GCC
run: brew install gcc@${{matrix.version}}

- name: ⚙️ run-cmake (configure)
env:
CC: gcc-${{matrix.gcc}}
CXX: g++-${{matrix.gcc}}
CC: gcc-${{matrix.version}}
CXX: g++-${{matrix.version}}
uses: cmake-tools/run-cmake@v0-alpha
id: 'configure'
with:
Expand Down

0 comments on commit 79656dd

Please sign in to comment.