Skip to content

Commit

Permalink
make sure verify-libraries doesn't delay recovery-package
Browse files Browse the repository at this point in the history
  • Loading branch information
iliana committed May 15, 2024
1 parent 5eda889 commit 15894ef
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dev-tools/releng/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,8 @@ async fn main() -> Result<()> {
jobs.select("host-image").after("host-profile");

stamp_packages!("tuf-stamp", Target::Host, TUF_PACKAGES)
.after("host-stamp");
.after("host-stamp")
.after("recovery-stamp");

// Run `cargo xtask verify-libraries --release`. (This was formerly run in
// the build-and-test Buildomat job, but this fits better here where we've
Expand All @@ -553,7 +554,8 @@ async fn main() -> Result<()> {
"verify-libraries",
Command::new(&cargo).args(["xtask", "verify-libraries", "--release"]),
)
.after("host-stamp");
.after("host-package")
.after("recovery-package");

for (name, base_url) in [
("staging", "https://permslip-staging.corp.oxide.computer"),
Expand Down

0 comments on commit 15894ef

Please sign in to comment.