Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .bcr/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
bcr_test_module:
module_path: 'e2e/smoke'
matrix:
bazel: ['7.x', '6.x']
# TODO: e2e/smoke broken with bazel6
bazel: ['8.x', '7.x']
platform: ['debian10', 'macos', 'ubuntu2004', 'windows']
tasks:
run_tests:
Expand Down
22 changes: 12 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,37 +94,39 @@ jobs:
- bazel-version:
major: 6
bzlmod: 0
# Don't run tests with Bazel 8 by default
# Don't test non-bzlmod with Bazel 8 where only modern bzlmod should be used
- bazel-version:
major: 8
bzlmod: 0
# Don't test root workspace with non-bzlmod
- bzlmod: 0
folder: .
# e2e/smoke broken with bazel6
# TODO: e2e/smoke broken with bazel6
- bazel-version:
major: 6
folder: e2e/smoke
bzlmod: 1
# TODO: broken on bazel 8
- bazel-version:
major: 8
folder: e2e/external_dep
# TODO: broken on bazel 8
- bazel-version:
major: 8
folder: e2e/external_dep/app
# Disable some broken tests on Windows
- os: windows
folder: .
- os: windows
folder: e2e/worker
include:
# Additional docs tests
- bazel-version:
major: 7
version: 7.3.2
bzlmod: 1
folder: docs
os: ubuntu

# Include only unit tests with bazel8
- bazel-version:
major: 8
bzlmod: 1
folder: .
os: ubuntu

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down