Revert "ci: Use bookworm image"

This reverts commit d7e27bc793.

Bookworm breaks build because it ships a newer version of rustlib-regex than supported.
This commit is contained in:
Dorota Czaplejewicz
2021-12-16 12:47:51 +00:00
parent ac3f390cc6
commit b2485c343a

View File

@ -1,4 +1,4 @@
image: $CI_REGISTRY/world/phosh/phosh/debian:v0.0.20211208 image: debian:bullseye
stages: stages:
- build - build
@ -6,7 +6,10 @@ stages:
before_script: before_script:
- apt-get -y update - 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: build_docs:
stage: build stage: build
@ -53,7 +56,6 @@ build_deb:
- cp ../*.deb . - cp ../*.deb .
build_deb:arm64: build_deb:arm64:
image: debian:bookworm
tags: tags:
- aarch64 - aarch64
stage: build stage: build