diff options
author | Vincent Ambo <mail@tazj.in> | 2022-12-26T10·16+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-12-28T16·35+0000 |
commit | ee7a724b608fa30e3664bbc2e99e19e72559b15a (patch) | |
tree | ce1c84db2afa73ddb9787c27ef07ab00d613faee | |
parent | c4ee942b1c8cc469891f0b74938f328eba0154e7 (diff) |
fix(ops/pipelines): explicitly set contexts for annotations r/5529
I think what might be going on with b/231 is that the annotations somehow started conflicting because they don't have contexts set. Lets try setting a context and see if it changs anything ... Change-Id: I62ed57f9e24f08e4e7215f05d35cfa769e2e2c24 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7640 Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
-rw-r--r-- | ops/pipelines/static-pipeline.yaml | 2 | ||||
-rw-r--r-- | tools/rust-crates-advisory/default.nix | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ops/pipelines/static-pipeline.yaml b/ops/pipelines/static-pipeline.yaml index 8fcf240f7433..c3d791f64161 100644 --- a/ops/pipelines/static-pipeline.yaml +++ b/ops/pipelines/static-pipeline.yaml @@ -41,7 +41,7 @@ steps: if test -n "$${GERRIT_CHANGE_URL-}"; then echo "This is a build of [cl/$$GERRIT_CHANGE_ID]($$GERRIT_CHANGE_URL) (at patchset #$$GERRIT_PATCHSET)" | \ - buildkite-agent annotate + buildkite-agent annotate --context cl-annotation fi # Attempt to fetch a target map from a parent commit on canon, diff --git a/tools/rust-crates-advisory/default.nix b/tools/rust-crates-advisory/default.nix index a187963473d6..da7eb7544703 100644 --- a/tools/rust-crates-advisory/default.nix +++ b/tools/rust-crates-advisory/default.nix @@ -114,6 +114,7 @@ depot.nix.readTree.drvTargets { command = buildkiteReportStep { command = [ depot-rust-crates-advisory-report ]; style = "warning"; + context = "depot-crate-advisories"; }; }; }; |