commit | ab3f2a64b830cb36da8a5cb2b03da9e854d09a29 | [log] [tgz] |
---|---|---|
author | Yun Peng <pcloudy@google.com> | Wed Oct 30 15:15:22 2024 +0100 |
committer | GitHub <noreply@github.com> | Wed Oct 30 15:15:22 2024 +0100 |
tree | 7b85f61b63799b07c6272f02fb836e5b55d002e9 | |
parent | 3dcd4a358ac0d057a8943e5f14c5af15065de959 [diff] |
Avoid generate duplicated tasks (#2093) Previously, bazel version defined in the matrix was still expanded via the "old_bazel" attributes, leading to duplicated tasks: - https://buildkite.com/bazel/bcr-bazel-compatibility-test/builds/22#0192d96c-70d2-4057-a659-c9944b421a0b - https://buildkite.com/bazel/bcr-bazel-compatibility-test/builds/22#0192d96c-70dc-458b-bd72-637d99898ac5 This PR flattens bazel versions in the matrix to a single string to avoid that while still keeping a nice warning message like ``` Bazel version overridden from 6.x, 7.x to 8.0.0rc2 ```