Skip to content

Commit

Permalink
Check GCC version
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Jun 18, 2024
1 parent cde6759 commit 2eeb05f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/cupcake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,16 @@ jobs:
- name: install Ninja on macOS
if: matrix.generator == 'Ninja' && startsWith(matrix.platform, 'macos')
run: brew install ninja
- name: install GCC on Linux
if: matrix.compiler == 'gcc' && startsWith(matrix.platform, 'ubuntu')
run: sudo apt install gcc-13
- name: install GCC on macOS
if: matrix.compiler == 'gcc' && startsWith(matrix.platform, 'macos')
run: brew install gcc@13
- name: check compiler
run: |
${{ matrix.profile.cc }} --version
${{ matrix.profile.cxx }} --version
- name: checkout
uses: actions/checkout@v4
- name: install Conan
Expand Down

0 comments on commit 2eeb05f

Please sign in to comment.