From db1868847d61994c2cad51b4fdb0f15b7ffee6ea Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 20 Oct 2023 16:54:38 -0400 Subject: [PATCH] buildroot: Enable testing-devel Shorten the cycle for using new ostree in CI. --- ci/buildroot/install-buildroot.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/buildroot/install-buildroot.sh b/ci/buildroot/install-buildroot.sh index 6de1d78a57..a67296dea6 100755 --- a/ci/buildroot/install-buildroot.sh +++ b/ci/buildroot/install-buildroot.sh @@ -3,6 +3,10 @@ set -euo pipefail # This is invoked by Dockerfile +dnf -y install dnf-plugins-core +# We want to avoid a 7 day cycle for e.g. new ostree etc. +dnf config-manager --set-enabled updates-testing + dn=$(dirname "$0") tmpd=$(mktemp -d) && trap 'rm -rf ${tmpd}' EXIT