ci: Disable composefs test for now
authorColin Walters <walters@verbum.org>
Wed, 11 Oct 2023 12:15:25 +0000 (08:15 -0400)
committerColin Walters <walters@verbum.org>
Wed, 11 Oct 2023 13:16:45 +0000 (09:16 -0400)
Need to change the framework to boot with an Ignition config
that switches to ext4 soon.

ci/prow/fcos-e2e.sh
tests/inst/src/composefs.rs
tests/inst/src/insttestmain.rs

index 9d42dcce453581d20ef43b335dc9d68316e00c73..3151898b00ad802b68175625aee4dcae339503c3 100755 (executable)
@@ -12,4 +12,4 @@ rsync -rlv /cosa/component-install/ overrides/rootfs/
 cosa fetch
 cosa build
 # For now, Prow just runs the composefs tests, since Jenkins covers the others
-cosa kola run 'ext.ostree.destructive-rs.composefs*'
+#cosa kola run 'ext.ostree.destructive-rs.composefs*'
index 4e0ad66efeb9129b62013da16148451980970ce2..219b9e12be99108d43369686c035df6fcc4ba62f 100644 (file)
@@ -131,6 +131,7 @@ fn verify_composefs_signed(sh: &xshell::Shell, metadata: &glib::VariantDict) ->
     Ok(())
 }
 
+#[allow(dead_code)]
 pub(crate) fn itest_composefs() -> Result<()> {
     let sh = &xshell::Shell::new()?;
     if !cmd!(sh, "ostree --version").read()?.contains("- composefs") {
index 1613385cd527f6381745649ba82f80d5813c09a3..2da35ffed5fbac70dad161106225320a1c00629d 100644 (file)
@@ -33,7 +33,7 @@ const TESTS: &[StaticTest] = &[
 ];
 const DESTRUCTIVE_TESTS: &[StaticTest] = &[
     test!(destructive::itest_transactionality),
-    test!(composefs::itest_composefs),
+    // test!(composefs::itest_composefs),
 ];
 
 #[derive(Debug, StructOpt)]