From f1d1732b11929671110e6a1b845c8d1a1a67530f Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Mon, 12 Feb 2024 15:20:18 -0800 Subject: [PATCH] tests(bcr): Set Bazel version in BCR presubmit config. (#1753) BCR now requires the presubmit configs to specify the Bazel versions to run tests with. Without this, the BCR checks fail and we can't do releases to BCR. --- .bcr/presubmit.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bcr/presubmit.yml b/.bcr/presubmit.yml index 252df6b3d4..6be334ebfe 100644 --- a/.bcr/presubmit.yml +++ b/.bcr/presubmit.yml @@ -16,9 +16,11 @@ bcr_test_module: module_path: "examples/bzlmod" matrix: platform: ["debian11", "macos", "ubuntu2004", "windows"] + bazel: [6.x, 7.x] tasks: run_tests: name: "Run test module" platform: ${{ platform }} + bazel: ${{ bazel }} test_targets: - "//..."