diff options
author | Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> | 2024-07-12 18:55:17 +0200 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> | 2024-07-12 19:47:45 +0200 |
commit | 7c943d5a024182e45aa241c47ef85ea39e0f1383 (patch) | |
tree | 7c706c67224d0033fdf6705e113a7a189c7df5f6 | |
parent | 07d66135d8df160088d2079ff3e7d9f0e51ed527 (diff) |
ci: switch from testing to bookworm
To be able to use gfx-ci/ci-deb-repo.
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | .gitlab-ci/debian-install.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 87d166d..fd10cc1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ stages: .debian-testing: variables: - FDO_DISTRIBUTION_VERSION: testing-slim + FDO_DISTRIBUTION_VERSION: bookworm-slim FDO_DISTRIBUTION_EXEC: 'bash .gitlab-ci/debian-install.sh' FDO_DISTRIBUTION_PACKAGES: 'ca-certificates' FDO_DISTRIBUTION_TAG: "2024-02-24" diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index ddb3c57..5536488 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -3,7 +3,7 @@ set -e set -o xtrace -echo 'deb-src https://deb.debian.org/debian testing main' >/etc/apt/sources.list.d/deb-src.list +echo 'deb-src https://deb.debian.org/debian bookworm main' >/etc/apt/sources.list.d/deb-src.list apt-get update apt-get install -y git ca-certificates build-essential automake autoconf libtool pkg-config |