From b2485c343a7d4b0e68ab79100c9a49f632e6122d Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz Date: Thu, 16 Dec 2021 12:47:51 +0000 Subject: [PATCH] Revert "ci: Use bookworm image" This reverts commit d7e27bc79300778f6a509bae35b90daf0f6a9f5d. Bookworm breaks build because it ships a newer version of rustlib-regex than supported. --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ef7826bc..a14c86eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: $CI_REGISTRY/world/phosh/phosh/debian:v0.0.20211208 +image: debian:bullseye stages: - build @@ -6,7 +6,10 @@ stages: before_script: - apt-get -y update - - apt-get -y install ca-certificates + - apt-get -y install wget ca-certificates gnupg + - echo "deb [trusted=yes] http://ci.puri.sm/ bullseyeci main" > /etc/apt/sources.list.d/ci.list + - wget -O- https://ci.puri.sm/ci-repo.key | apt-key add - + - apt-get -y update build_docs: stage: build @@ -53,7 +56,6 @@ build_deb: - cp ../*.deb . build_deb:arm64: - image: debian:bookworm tags: - aarch64 stage: build