From 2f8bfbd80780f73f1ca1fd907358e3623a3866bf Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Wed, 3 Feb 2021 18:31:21 -0600 Subject: [PATCH] Switch PPA for clang. --- tests/dockerfiles/Dockerfile.ubuntu-clang-10 | 2 +- tests/dockerfiles/Dockerfile.ubuntu-clang-11 | 2 +- tests/dockerfiles/Dockerfile.ubuntu-clang-7 | 2 +- tests/dockerfiles/Dockerfile.ubuntu-clang-8 | 2 +- tests/dockerfiles/Dockerfile.ubuntu-clang-9 | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/dockerfiles/Dockerfile.ubuntu-clang-10 b/tests/dockerfiles/Dockerfile.ubuntu-clang-10 index 41ee4700..c31410ef 100644 --- a/tests/dockerfiles/Dockerfile.ubuntu-clang-10 +++ b/tests/dockerfiles/Dockerfile.ubuntu-clang-10 @@ -3,7 +3,7 @@ FROM ${IMAGE}/builder/ubuntu-base:latest RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ && apt-key add llvm-snapshot.gpg.key \ - && add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main' \ + && add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main' \ && DEBIAN_FRONTEND=noninteractive \ apt-get install -qy --no-install-recommends \ clang-10 \ diff --git a/tests/dockerfiles/Dockerfile.ubuntu-clang-11 b/tests/dockerfiles/Dockerfile.ubuntu-clang-11 index 91a00cbd..5ad0f218 100644 --- a/tests/dockerfiles/Dockerfile.ubuntu-clang-11 +++ b/tests/dockerfiles/Dockerfile.ubuntu-clang-11 @@ -3,7 +3,7 @@ FROM ${IMAGE}/builder/ubuntu-base:latest RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ && apt-key add llvm-snapshot.gpg.key \ - && add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-11 main' \ + && add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main' \ && DEBIAN_FRONTEND=noninteractive \ apt-get install -qy --no-install-recommends \ clang-11 \ diff --git a/tests/dockerfiles/Dockerfile.ubuntu-clang-7 b/tests/dockerfiles/Dockerfile.ubuntu-clang-7 index 1907112f..96529740 100644 --- a/tests/dockerfiles/Dockerfile.ubuntu-clang-7 +++ b/tests/dockerfiles/Dockerfile.ubuntu-clang-7 @@ -3,7 +3,7 @@ FROM ${IMAGE}/builder/ubuntu-base:latest RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ && apt-key add llvm-snapshot.gpg.key \ - && add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main' \ + && add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-7 main' \ && DEBIAN_FRONTEND=noninteractive \ apt-get install -qy --no-install-recommends \ clang-7 \ diff --git a/tests/dockerfiles/Dockerfile.ubuntu-clang-8 b/tests/dockerfiles/Dockerfile.ubuntu-clang-8 index 20a2e11f..ce7781f4 100644 --- a/tests/dockerfiles/Dockerfile.ubuntu-clang-8 +++ b/tests/dockerfiles/Dockerfile.ubuntu-clang-8 @@ -3,7 +3,7 @@ FROM ${IMAGE}/builder/ubuntu-base:latest RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ && apt-key add llvm-snapshot.gpg.key \ - && add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main' \ + && add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-8 main' \ && DEBIAN_FRONTEND=noninteractive \ apt-get install -qy --no-install-recommends \ clang-8 \ diff --git a/tests/dockerfiles/Dockerfile.ubuntu-clang-9 b/tests/dockerfiles/Dockerfile.ubuntu-clang-9 index 5a083668..da26db01 100644 --- a/tests/dockerfiles/Dockerfile.ubuntu-clang-9 +++ b/tests/dockerfiles/Dockerfile.ubuntu-clang-9 @@ -3,7 +3,7 @@ FROM ${IMAGE}/builder/ubuntu-base:latest RUN wget -q https://apt.llvm.org/llvm-snapshot.gpg.key \ && apt-key add llvm-snapshot.gpg.key \ - && add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main' \ + && add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-9 main' \ && DEBIAN_FRONTEND=noninteractive \ apt-get install -qy --no-install-recommends \ clang-9 \