commit 9daa7e1e193a693b4415d3db8031633236f28876 (tree)
parent 4d54e9a4fbb899a18f1d7b9e83bbb65f0973a0cb
Author: Andrew Kelley <andrew@ziglang.org>
Date: Fri, 20 Dec 2019 13:40:07 -0500
CI: update llvm apt sources to correct ubuntu version
In the pipelines.yml file we request Ubuntu 18.04 Bionic Beaver, but in
the script we were still using the Xenial apt.llvm.org sources.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/azure/linux_script b/ci/azure/linux_script
@@ -5,7 +5,7 @@ set -e
BUILDDIR="$(pwd)"
-sudo sh -c 'echo "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main" >> /etc/apt/sources.list'
+sudo sh -c 'echo "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main" >> /etc/apt/sources.list'
wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update -q