Skip to content

Commit 6828ef6

Browse files
authored
Merge pull request #2541 from Kobzol/artifacts-error-message
Include profile in error message about unavailable artifacts
2 parents 060fb0a + c848f43 commit 6828ef6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

collector/src/bin/collector.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,10 +1594,11 @@ async fn run_benchmark_job(
15941594
Ok(sysroot) => sysroot,
15951595
Err(SysrootDownloadError::SysrootShaNotFound) => {
15961596
return Err(BenchmarkJobError::Permanent(anyhow::anyhow!(
1597-
"Artifacts for SHA `{}`, target `{}` and backend `{}` were not found on CI servers",
1597+
"Artifacts for SHA `{}`, target `{}`, backend `{}` and profile `{}` were not found on CI servers",
15981598
commit.sha,
15991599
job.target().as_str(),
1600-
job.backend().as_str()
1600+
job.backend().as_str(),
1601+
job.profile().as_str()
16011602
)))
16021603
}
16031604
Err(SysrootDownloadError::IO(error)) => return Err(error.into()),

0 commit comments

Comments
 (0)