Skip to content

Commit

Permalink
ci: move microvm image into arch directory
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Feb 8, 2024
1 parent d8f161e commit 227bdd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ jobs:
- name: Run UEFI (release)
run: cargo xtask ci qemu --target x86_64-uefi --accel --release
- name: Run Firecracker (hello_world, dev)
run: cargo xtask ci firecracker --target x86_64-fc --features fc
run: cargo xtask ci firecracker --target x86_64-fc --features fc --image hello_world-microvm
- name: Run Firecracker (hello_world, release)
run: cargo xtask ci firecracker --target x86_64-fc --features fc --release
run: cargo xtask ci firecracker --target x86_64-fc --features fc --image hello_world-microvm --release
File renamed without changes.
2 changes: 1 addition & 1 deletion xtask/src/artifact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ impl Artifact {
}

pub fn ci_image(&self, image: &str) -> PathBuf {
["data", self.target.name(), image].iter().collect()
["data", self.target.arch(), image].iter().collect()
}
}

0 comments on commit 227bdd3

Please sign in to comment.