1
0
mirror of https://github.com/coreos/fedora-coreos-config.git synced 2026-02-05 09:45:30 +01:00

buildroot: Enable testing-devel

Shorten the cycle for using new ostree in CI.
This commit is contained in:
Colin Walters
2023-10-20 16:54:38 -04:00
parent 4b6bb7fb1b
commit 64f2dc3207

View File

@@ -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