From 20124231bddd7d08f1ad7e3f1692db142ef8f921 Mon Sep 17 00:00:00 2001 From: Adam Chasen <adam@chasen.name> Date: Sun, 30 Jul 2023 16:41:09 +0000 Subject: [PATCH] dependency conflict on libtinfo6 when mixing bookworm and unstable. Just use bookworm for now. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a463659..9b3bdde 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,10 @@ # Gitlab CI file to generate the system image .img file. -image: debian:unstable-slim +image: debian:bookworm-slim build: script: | - echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list - printf 'Package: *\\nPin: release n=bookworm\\nPin-Priority: 100\\n' > /etc/apt/preferences.d/bookworm.pref + #echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list + #printf 'Package: *\\nPin: release n=bookworm\\nPin-Priority: 100\\n' > /etc/apt/preferences.d/bookworm.pref apt update if [ ! -e /proc/sys/fs/binfmt_misc/status ]; then mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc -- GitLab