Skip to content

Commit

Permalink
gha/linux: Exclude compilers that don't exist on the new LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonmux committed Oct 14, 2024
1 parent 3150663 commit 84180c6
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ jobs:
- 'gcc-11'
- 'gcc-12'
- 'gcc-13'
exclude:
# Exclude compilers that don't exist on the new LTS
- os: { id: ubuntu-24.04, name: noble }
compiler: 'clang-13'
- os: { id: ubuntu-24.04, name: noble }
compiler: 'clang-14'
- os: { id: ubuntu-24.04, name: noble }
compiler: 'clang-15'
- os: { id: ubuntu-24.04, name: noble }
compiler: 'clang-16'
fail-fast: false
env:
BUILD_OPTS: ''
Expand Down Expand Up @@ -97,11 +107,15 @@ jobs:
with:
lfs: true
submodules: true
- name: Setup Meson + Ninja + gcovr
- name: Upgrade pip + wheel
if: matrix.os.name == 'jammy'
shell: bash
run: |
sudo python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install --user meson ninja gcovr
- name: Setup Meson + Ninja + gcovr
shell: bash
run: |
python3 -m pip install --break-system-packages --user meson ninja gcovr
working-directory: ${{ runner.temp }}
- name: Version tools
shell: bash
Expand Down

0 comments on commit 84180c6

Please sign in to comment.