aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/sizediff-install-pkgs.sh
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2024-08-19 19:56:43 +0200
committerRon Evans <[email protected]>2024-08-20 08:33:49 +0200
commit16cd500000174dce35a8ab6da2e7b98fc3d839cd (patch)
tree818a7cf4ade08754e997a807908a3e63ee420013 /.github/workflows/sizediff-install-pkgs.sh
parent16950780d38941c96fe9fdbeede457bb858c2423 (diff)
downloadtinygo-16cd500000174dce35a8ab6da2e7b98fc3d839cd.tar.gz
tinygo-16cd500000174dce35a8ab6da2e7b98fc3d839cd.zip
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!
Diffstat (limited to '.github/workflows/sizediff-install-pkgs.sh')
-rwxr-xr-x.github/workflows/sizediff-install-pkgs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/sizediff-install-pkgs.sh b/.github/workflows/sizediff-install-pkgs.sh
index 31edc5750..e77600d18 100755
--- a/.github/workflows/sizediff-install-pkgs.sh
+++ b/.github/workflows/sizediff-install-pkgs.sh
@@ -2,7 +2,7 @@
# still works after checking out the dev branch (that is, when going from LLVM
# 16 to LLVM 17 for example, both Clang 16 and Clang 17 are installed).
-echo 'deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main' | sudo tee /etc/apt/sources.list.d/llvm.list
+echo 'deb https://apt.llvm.org/noble/ llvm-toolchain-noble-18 main' | sudo tee /etc/apt/sources.list.d/llvm.list
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install --no-install-recommends -y \