diff options
author | Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> | 2024-07-12 18:46:56 +0200 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> | 2024-07-12 19:47:55 +0200 |
commit | d1c7ab5bac11c2a6c6c763778caecc318318fe12 (patch) | |
tree | 625beedc1c1644b49263025c86567936da42d276 | |
parent | 7c943d5a024182e45aa241c47ef85ea39e0f1383 (diff) |
ci: use gfx-ci/ci-deb-repo to get latest libdrm
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
-rw-r--r-- | .gitlab-ci.yml | 3 | ||||
-rw-r--r-- | .gitlab-ci/debian-install.sh | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fd10cc1..8389500 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,7 +28,8 @@ stages: 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" + FDO_DISTRIBUTION_TAG: "2024-07-12-ci-deb-repo" + PKG_REPO_REV: "bca9635d" container-build: extends: diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index 5536488..93934c8 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -4,6 +4,8 @@ set -e set -o xtrace echo 'deb-src https://deb.debian.org/debian bookworm main' >/etc/apt/sources.list.d/deb-src.list +echo "deb [trusted=yes] https://gitlab.freedesktop.org/gfx-ci/ci-deb-repo/-/raw/${PKG_REPO_REV}/ ${FDO_DISTRIBUTION_VERSION%-*} main" | tee /etc/apt/sources.list.d/gfx-ci_.list + apt-get update apt-get install -y git ca-certificates build-essential automake autoconf libtool pkg-config |