| author | |
| committer | |
| log | 9daa7e1e193a693b4415d3db8031633236f28876 |
| tree | 5796f29c21e2b21defa2acf74c5c534fbe8f8cf9 |
| parent | 4d54e9a4fbb899a18f1d7b9e83bbb65f0973a0cb |
| signature | Commit is signed but in an unrecognized format. |
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.1 files changed, 1 insertions(+), 1 deletions(-)
ci/azure/linux_script+1-1| ... | ... | @@ -5,7 +5,7 @@ set -e |
| 5 | 5 | |
| 6 | 6 | BUILDDIR="$(pwd)" |
| 7 | 7 | |
| 8 | sudo sh -c 'echo "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main" >> /etc/apt/sources.list' | |
| 8 | sudo sh -c 'echo "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main" >> /etc/apt/sources.list' | |
| 9 | 9 | wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add - |
| 10 | 10 | sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test |
| 11 | 11 | sudo apt-get update -q |