Skip to content

Commit

Permalink
Merge pull request #612 from cgwalters/test-optimize
Browse files Browse the repository at this point in the history
tests-integration: Optimize rebuilds
  • Loading branch information
jmarrero committed Jun 19, 2024
2 parents 587067d + 0f649ac commit 3c7c6c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests-integration/src/runvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,10 @@ fn run_bib(sh: &Shell, cimage: &str, tmpdir: &Utf8Path, diskpath: &Utf8Path) ->
println!("{cimage} digest={digest}");
if diskpath.try_exists()? {
let mut buf = [0u8; 2048];
if rustix::fs::getxattr(diskpath.as_std_path(), IMAGEID_XATTR, &mut buf)
if let Ok(n) = rustix::fs::getxattr(diskpath.as_std_path(), IMAGEID_XATTR, &mut buf)
.context("Reading xattr")
.is_ok()
{
let buf = String::from_utf8_lossy(&buf);
let buf = String::from_utf8_lossy(&buf[0..n]);
if &*buf == digest.as_str() {
println!("Existing disk {diskpath} matches container digest {digest}");
return Ok(());
Expand Down Expand Up @@ -142,9 +141,10 @@ pub(crate) fn run(opt: Opt) -> Result<()> {
let testimage = if let Some(i) = testimage.take() {
i
} else {
let source_date_epoch = cmd!(&ctx.sh, "git log -1 --pretty=%ct").read()?;
cmd!(
&ctx.sh,
"podman build --build-arg=variant=tmt -t {TEST_IMAGE} -f hack/Containerfile ."
"podman build --timestamp={source_date_epoch} --build-arg=variant=tmt -t {TEST_IMAGE} -f hack/Containerfile ."
)
.run()?;
TEST_IMAGE.to_string()
Expand Down

0 comments on commit 3c7c6c3

Please sign in to comment.