We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 270f219 + 0bbb3ac commit 08c0352Copy full SHA for 08c0352
collector/src/bin/collector.rs
@@ -843,14 +843,16 @@ fn main_result() -> anyhow::Result<i32> {
843
match next {
844
NextArtifact::Release(tag) => {
845
let toolchain = create_toolchain_from_published_version(&tag, &target_triple)?;
846
- bench_published_artifact(
+ let res = bench_published_artifact(
847
&toolchain,
848
rt.block_on(pool.connection()),
849
&mut rt,
850
&benchmark_dirs,
851
- )?;
+ );
852
853
client.post(format!("{}/perf/onpush", site_url)).send()?;
854
+
855
+ res?;
856
}
857
NextArtifact::Commit {
858
commit,
0 commit comments