diff options
author | Tom Rini <trini@konsulko.com> | 2024-03-10 10:44:35 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-03-10 10:44:35 -0400 |
commit | 24a39e3a22d995a7a7dcc195e51f9be9af48e44d (patch) | |
tree | e3e4891cb956f53cdb16baf5ddabd3d0d0983d56 | |
parent | beedf675b36841ce1e077779157a87a6505317e6 (diff) | |
download | u-boot-TEST/update-to-llvm-17.zip u-boot-TEST/update-to-llvm-17.tar.gz u-boot-TEST/update-to-llvm-17.tar.bz2 |
TEST: Update to clang-17TEST/update-to-llvm-17
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | .azure-pipelines.yml | 6 | ||||
-rw-r--r-- | .gitlab-ci.yml | 4 | ||||
-rw-r--r-- | tools/docker/Dockerfile | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 1d73215a..798c137 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -278,16 +278,16 @@ stages: TEST_PY_TEST_SPEC: "version" sandbox_clang: TEST_PY_BD: "sandbox" - OVERRIDE: "-O clang-16" + OVERRIDE: "-O clang-17" sandbox_clang_asan: TEST_PY_BD: "sandbox" - OVERRIDE: "-O clang-16 -a ASAN" + OVERRIDE: "-O clang-17 -a ASAN" TEST_PY_TEST_SPEC: "version" sandbox64: TEST_PY_BD: "sandbox64" sandbox64_clang: TEST_PY_BD: "sandbox64" - OVERRIDE: "-O clang-16" + OVERRIDE: "-O clang-17" sandbox_spl: TEST_PY_BD: "sandbox_spl" TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8bfbadd..dc68187 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -256,7 +256,7 @@ sandbox test.py: sandbox with clang test.py: variables: TEST_PY_BD: "sandbox" - OVERRIDE: "-O clang-16" + OVERRIDE: "-O clang-17" <<: *buildman_and_testpy_dfn sandbox64 test.py: @@ -267,7 +267,7 @@ sandbox64 test.py: sandbox64 with clang test.py: variables: TEST_PY_BD: "sandbox64" - OVERRIDE: "-O clang-16" + OVERRIDE: "-O clang-17" <<: *buildman_and_testpy_dfn sandbox_spl test.py: diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 6122776..ab82d01 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/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/jammy/ llvm-toolchain-jammy-16 main | tee /etc/apt/sources.list.d/llvm.list +RUN echo deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main | tee /etc/apt/sources.list.d/llvm.list # Manually install the kernel.org "Crosstool" based toolchains for gcc-13.2.0 RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-aarch64-linux.tar.xz | tar -C /opt -xJ @@ -40,7 +40,7 @@ RUN apt-get update && apt-get install -y \ bison \ build-essential \ cgpt \ - clang-16 \ + clang-17 \ coreutils \ cpio \ curl \ |