-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: don't test e2e/smoke on BCR with Bazel 6
- Loading branch information
1 parent
fcb8efa
commit c17217b
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |