Skip to content

Commit

Permalink
Merge pull request #12233 from acolombier/ci/clazy-workaround
Browse files Browse the repository at this point in the history
ci: workaround runner-image issue
  • Loading branch information
daschuer authored Oct 28, 2023
2 parents 2db33fd + c96dd53 commit d961d79
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,13 @@ jobs:
working-directory: build
- name: Set up problem matcher
uses: ammaraskar/gcc-problem-matcher@0.2.0
# Work around https://github.com/actions/runner-images/issues/8659
- name: "Remove GCC 13 from runner image (workaround)"
shell: bash
run: |
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list
sudo apt-get update
sudo apt-get install -y --allow-downgrades libc6=2.35-0ubuntu3.4 libc6-dev=2.35-0ubuntu3.4 libstdc++6=12.3.0-1ubuntu1~22.04 libgcc-s1=12.3.0-1ubuntu1~22.04
- name: Build
# Do not abort on errors and build/check the whole project
run: cmake --build . -j $(nproc) -- --keep-going
Expand Down

0 comments on commit d961d79

Please sign in to comment.