From 9daa7e1e193a693b4415d3db8031633236f28876 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 20 Dec 2019 13:40:07 -0500 Subject: [PATCH] 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. --- ci/azure/linux_script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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