diff options
author | Ayke van Laethem <[email protected]> | 2024-08-19 19:56:43 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-08-20 08:33:49 +0200 |
commit | 16cd500000174dce35a8ab6da2e7b98fc3d839cd (patch) | |
tree | 818a7cf4ade08754e997a807908a3e63ee420013 /.github/workflows/sizediff-install-pkgs.sh | |
parent | 16950780d38941c96fe9fdbeede457bb858c2423 (diff) | |
download | tinygo-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.sh | 2 |
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 \ |