Skip to content

Commit

Permalink
Release agent 0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
coeuvre committed Feb 5, 2025
1 parent 4698bbc commit 4997a7a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion agent/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bazelci-agent"
version = "0.2.6"
version = "0.2.7"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions agent/src/artifact/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ fn watch_bep_json_file(
.map(|str| Path::new(str).to_path_buf());
} else if build_event.is_test_result() {
let test_result = build_event.test_result();
let include_output = ["FAILED", "TIMEOUT", "FLAKY"]
.contains(&test_result.status.as_str());
let include_output =
["FAILED", "TIMEOUT", "FLAKY"].contains(&test_result.status.as_str());
for output in test_result.test_action_outputs.iter() {
match output.name.as_str() {
"test.log" => {
Expand Down

0 comments on commit 4997a7a

Please sign in to comment.