From 3be9e2f4fde501ab0bbb19c2d29e1351b2581055 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 5 Oct 2023 19:54:54 -0400 Subject: [PATCH] ci: Ensure composefs is enabled on Fedora For some reason we're not picking this up in the Prow build, which breaks things because now rpm-ostree hard requires it. Let's make this a fatal build time error for more clear debugging. --- ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.sh b/ci/build.sh index 4860565845..d86910b45c 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -17,7 +17,7 @@ ${dn}/installdeps.sh if test "${OS_ID}" = 'fedora'; then case "${CONFIGOPTS:-}" in *--with-soup*|*--without-curl*) ;; - *) CONFIGOPTS="${CONFIGOPTS:-} --with-curl" + *) CONFIGOPTS="${CONFIGOPTS:-} --with-curl --with-composefs" esac fi case "${CONFIGOPTS:-}" in