From 1982a2d4a141271257d442b720623532ee56fe7a Mon Sep 17 00:00:00 2001 From: Simon McVittie <smcv@collabora.com> Date: Thu, 27 Jul 2023 18:10:29 +0100 Subject: [PATCH] CI: Switch development container to Debian 12 We were using Debian testing, but that's now reporting a memory leak that wasn't there 10 days ago, stalling CI. It's not clear whether this is a real bug in steam-runtime-tools or a regression in a dependency. For now, hold it back to Debian 12 which is not a moving target. Signed-off-by: Simon McVittie <smcv@collabora.com> --- debian/gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/gitlab-ci.yml b/debian/gitlab-ci.yml index 8d0fd11f5..a6f8a4e7e 100644 --- a/debian/gitlab-ci.yml +++ b/debian/gitlab-ci.yml @@ -167,7 +167,7 @@ package:sniper: build:devel: stage: build - image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/debian:testing-slim + image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/debian:bookworm-slim before_script: - *common_before_script - | @@ -204,7 +204,7 @@ build:devel: build:clang: stage: build - image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/debian:testing-slim + image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/debian:bookworm-slim before_script: - *common_before_script - ./ci/prepare-deb.sh $BUILD_DEPENDENCIES clang clang-tools libclang-rt-dev -- GitLab