From cc9f08fc35c72f62c45ea396cd1e88eb6e0d6c21 Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Wed, 22 Jan 2025 12:28:47 +0000 Subject: [PATCH] Update the CI docker image It seems LLVM rolled back the clang package the last image was built with. --- .devcontainer/Dockerfile | 2 +- .gitlab-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 43b64e59a..5d5fb90d5 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # If changing this image ID, please also change it in .gitlab-ci.yml -FROM registry.gitlab.arm.com/kleidi/kleidicv:15 +FROM registry.gitlab.arm.com/kleidi/kleidicv:16 RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e21b491c1..4e53f0e17 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # If changing this image ID, please also change it in .devcontainer/Dockerfile -image: registry.gitlab.arm.com/kleidi/kleidicv:15 +image: registry.gitlab.arm.com/kleidi/kleidicv:16 variables: KUBERNETES_CPU_REQUEST: "16" -- GitLab