Skip to content

Commit

Permalink
CI fix: Use version 22.04 when building for Ubuntu
Browse files Browse the repository at this point in the history
This fixes the problem that `clang-10` is not available for newer versions of
Ubuntu. Of course we could upgrade `clang` as well, but let's restore the
functionality as it was, and after that, we can introduce new changes.

By using a fixed version we get a more controlled build environment.
  • Loading branch information
jakeru committed May 13, 2024
1 parent 27de906 commit ae05b59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
GCC:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
build_type: [Debug, RelWithDebInfo, MinSizeRel, Release]
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
Clang:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
build_type: [Debug, RelWithDebInfo, MinSizeRel, Release]
Expand Down

0 comments on commit ae05b59

Please sign in to comment.