Skip to content

Commit 16cd500

Browse files
aykevldeadprogram
authored andcommitted
ci: update apt repo for sizediff toolchain
This was still at jammy (22.04), while the CI container was noble (24.04). Somehow this didn't break, but it certainly isn't ideal to install packages across Ubuntu versions!
1 parent 1695078 commit 16cd500

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/sizediff-install-pkgs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# still works after checking out the dev branch (that is, when going from LLVM
33
# 16 to LLVM 17 for example, both Clang 16 and Clang 17 are installed).
44

5-
echo 'deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main' | sudo tee /etc/apt/sources.list.d/llvm.list
5+
echo 'deb https://apt.llvm.org/noble/ llvm-toolchain-noble-18 main' | sudo tee /etc/apt/sources.list.d/llvm.list
66
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
77
sudo apt-get update
88
sudo apt-get install --no-install-recommends -y \

.github/workflows/sizediff.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ concurrency:
99

1010
jobs:
1111
sizediff:
12+
# Note: when updating the Ubuntu version, also update the Ubuntu version in
13+
# sizediff-install-pkgs.sh
1214
runs-on: ubuntu-24.04
1315
permissions:
1416
pull-requests: write

0 commit comments

Comments
 (0)