From 64f2dc320787eb27ea1d28f2932c2463ee925473 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 eb4d84502d..2809b8a8f7 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