aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-12-20 13:40:07 -0500
committerAndrew Kelley <andrew@ziglang.org>2019-12-20 13:40:07 -0500
commit9daa7e1e193a693b4415d3db8031633236f28876 (patch)
tree5796f29c21e2b21defa2acf74c5c534fbe8f8cf9 /ci
parent4d54e9a4fbb899a18f1d7b9e83bbb65f0973a0cb (diff)
downloadzig-9daa7e1e193a693b4415d3db8031633236f28876.tar.gz
zig-9daa7e1e193a693b4415d3db8031633236f28876.zip
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 (limited to 'ci')
-rwxr-xr-xci/azure/linux_script2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/azure/linux_script b/ci/azure/linux_script
index f1c26d6a96..1116099cd7 100755
--- 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