diff mbox series

Dockerfile: Switch over to using LLVM-10

Message ID 20200410222653.14089-1-trini@konsulko.com
State New
Headers show
Series Dockerfile: Switch over to using LLVM-10 | expand

Commit Message

Tom Rini April 10, 2020, 10:26 p.m. UTC
At this point LLVM-7 is rather old.  Switch over to LLVM-10 to enable
some amount of CI coverage with newer compilers.

Signed-off-by: Tom Rini <trini at konsulko.com>
---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini April 28, 2020, 1:54 p.m. UTC | #1
On Fri, Apr 10, 2020 at 06:26:53PM -0400, Tom Rini wrote:

> At this point LLVM-7 is rather old.  Switch over to LLVM-10 to enable
> some amount of CI coverage with newer compilers.
> 
> Signed-off-by: Tom Rini <trini at konsulko.com>

Applied to gitlab-ci-runner/master, thanks!
diff mbox series

Patch

diff --git a/Dockerfile b/Dockerfile
index e9e5aa3c3905..daf896f5c466 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,7 +12,7 @@  ENV DEBIAN_FRONTEND=noninteractive
 # Add LLVM repository
 RUN apt-get update && apt-get install -y gnupg2 wget xz-utils && rm -rf /var/lib/apt/lists/*
 RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
-RUN echo deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main | tee /etc/apt/sources.list.d/llvm.list
+RUN echo deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main | tee /etc/apt/sources.list.d/llvm.list
 
 # Manually install the kernel.org "Crosstool" based toolchains for gcc-7.3
 RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/9.2.0/x86_64-gcc-9.2.0-nolibc-aarch64-linux.tar.xz | tar -C /opt -xJ
@@ -39,7 +39,7 @@  RUN apt-get update && apt-get install -y \
 	bc \
 	bison \
 	build-essential \
-	clang-7 \
+	clang-10 \
 	coreutils \
 	cpio \
 	cppcheck \