Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

attempt to fix bzlmod #167

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
20 changes: 19 additions & 1 deletion .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,44 @@ x_defaults:

tasks:
ubuntu2004:
build_flags:
- "--noenable_bzlmod"
test_flags:
- "--noenable_bzlmod"
<<: *common
macos:
build_flags:
- "--noenable_bzlmod"
test_flags:
- "--noenable_bzlmod"
<<: *common
macos_arm64:
build_flags:
- "--noenable_bzlmod"
test_flags:
- "--noenable_bzlmod"
<<: *common
ubuntu2004_bzlmod:
name: Bzlmod ubuntu2004
platform: ubuntu2004
build_flags:
- "--enable_bzlmod"
test_flags:
- "--enable_bzlmod"
<<: *common
macos_bzlmods:
macos_bzlmod:
name: Bzlmod macos
platform: macos
build_flags:
- "--enable_bzlmod"
test_flags:
- "--enable_bzlmod"
<<: *common
macos_arm64_bzlmod:
name: Bzlmod macos_arm64
platform: macos_arm64
build_flags:
- "--enable_bzlmod"
test_flags:
- "--enable_bzlmod"
<<: *common
1 change: 1 addition & 0 deletions kokoro/presubmit/presubmit_main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ function main() {
"--java_language_version=11"
"--java_runtime_version=17"
"--test_output=errors"
"--noenable_bzlmod"
)

# Go to rules_android workspace and run relevant tests.
Expand Down