From c17217b172912a6e71fd9ead83b05b528694211e Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Thu, 6 Jun 2024 22:53:32 -0700 Subject: [PATCH] chore: don't test e2e/smoke on BCR with Bazel 6 --- .bcr/presubmit.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.bcr/presubmit.yml b/.bcr/presubmit.yml index b8a3fa437f..3a43aa4775 100644 --- a/.bcr/presubmit.yml +++ b/.bcr/presubmit.yml @@ -1,14 +1,14 @@ bcr_test_module: - module_path: 'e2e/smoke' + module_path: "e2e/smoke" matrix: - bazel: ['6.x', '7.x'] - platform: ['debian10', 'macos', 'ubuntu2004', 'windows'] + bazel: ["7.x"] + platform: ["debian10", "macos", "ubuntu2004", "windows"] tasks: run_tests: - name: 'Run test module' + name: "Run test module" bazel: ${{ bazel }} platform: ${{ platform }} test_targets: - - '//...' + - "//..." test_flags: - - '--test_tag_filters=-skip-on-bazelci-windows' + - "--test_tag_filters=-skip-on-bazelci-windows"