Skip to content

Commit

Permalink
Temporarily use ubuntu-22.04 instead of latest in CI
Browse files Browse the repository at this point in the history
This is due to ubuntu-latest being updated from ubuntu-22.04 to
ubuntu-24.04 and there being different versions of gcc/clang available
in ubuntu-24.04 and ubuntu-22.04. See the following for some details.

actions/runner-images#10636

A proper fix to this would be one which installs the relevant versions
of gcc/clang in which ever version of ubuntu the runner is using. It's
not completely clear to me how to do that at the moment.
  • Loading branch information
james-d-mitchell committed Dec 18, 2024
1 parent 9c533ba commit 8c587c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ concurrency:

jobs:
tests:
name: "ubuntu-latest"
name: "ubuntu-22.04"
timeout-minutes: 60
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 8c587c1

Please sign in to comment.