ci: Disable composefs test for now

Need to change the framework to boot with an Ignition config
that switches to ext4 soon.
This commit is contained in:
Colin Walters 2023-10-11 08:15:25 -04:00
parent 2f76b03089
commit 734ea3ee37
3 changed files with 3 additions and 2 deletions

View File

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

View 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") {

View 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)]