Skip to content

Commit 4a0b800

Browse files
committed
ci: Dump deprecated Ubuntu 20.04 runner
Ubuntu 20.04 runners for GitHub Actions have been retired. Let's remove them from the build matrix, to avoid failures in our CI. We want to add Ubuntu 24.04 instead, but need to finalise #179 for that. Link: https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/ Signed-off-by: Quentin Monnet <[email protected]>
1 parent 63c1a37 commit 4a0b800

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os: [ubuntu-20.04, ubuntu-22.04]
24+
os: [ubuntu-22.04]
2525
runs-on: ${{ matrix.os }}
2626
env:
2727
FEATURES: .llvm and .skeletons
@@ -32,12 +32,6 @@ jobs:
3232
with:
3333
submodules: true
3434

35-
- name: Use clang-12 and not clang-11 for older Ubuntu
36-
if: matrix.os == 'ubuntu-20.04'
37-
run: |
38-
sudo apt-get remove -y clang-11 llvm-11
39-
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 50
40-
4135
- name: Install dependencies
4236
run: |
4337
sudo apt-get update

0 commit comments

Comments
 (0)