From c74fb1da4f40d3ea8da5a4a4a28e575139c51558 Mon Sep 17 00:00:00 2001 From: Cristian Ciocaltea Date: Fri, 31 Dec 2021 14:41:41 +0200 Subject: [PATCH] ci: Do not remove cmake In order to enable container reuse in Virgl CI, keep 'cmake' in the container. Additionally, provide the 'check' utility. Signed-off-by: Cristian Ciocaltea Reviewed-by: Rohan Garg Reviewed-by: Tomeu Vizoso Part-of: --- .gitlab-ci/container/debian/x86_build.sh | 3 ++- .gitlab-ci/image-tags.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/container/debian/x86_build.sh b/.gitlab-ci/container/debian/x86_build.sh index db631b3aeaa..7eb3a6a3d4d 100644 --- a/.gitlab-ci/container/debian/x86_build.sh +++ b/.gitlab-ci/container/debian/x86_build.sh @@ -11,7 +11,6 @@ STABLE_EPHEMERAL=" \ automake \ autotools-dev \ bzip2 \ - cmake \ libtool \ python3-pip \ " @@ -22,7 +21,9 @@ apt-get update apt-get install -y --no-remove \ $STABLE_EPHEMERAL \ + check \ clang \ + cmake \ libasan6 \ libarchive-dev \ libclang-cpp11-dev \ diff --git a/.gitlab-ci/image-tags.yml b/.gitlab-ci/image-tags.yml index 22361523ffa..36185a77d00 100644 --- a/.gitlab-ci/image-tags.yml +++ b/.gitlab-ci/image-tags.yml @@ -3,7 +3,7 @@ variables: DEBIAN_BASE_TAG: "2022-01-02-deqp-runner" DEBIAN_X86_BUILD_IMAGE_PATH: "debian/x86_build" - DEBIAN_BUILD_TAG: "2021-12-31-refactor" + DEBIAN_BUILD_TAG: "2021-12-31-keep-cmake" DEBIAN_X86_TEST_BASE_IMAGE: "debian/x86_test-base"