File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/main/kotlin/io/bazel/kotlin/test Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ common --lockfile_mode=off
22test --test_output=all
33build --config=android_worker
44
5- common --incompatible_disable_native_repo_rules=true
6- common --incompatible_autoload_externally=
7-
85# Worker configuration
96build:android_worker \
107 --worker_max_instances=auto \
Original file line number Diff line number Diff line change @@ -168,7 +168,11 @@ object BazelIntegrationTestRunner {
168168 }
169169
170170 override fun workspaceFlag (isBzlMod : Boolean ): Array <String > = if (isBzlMod) {
171- arrayOf(" --enable_bzlmod=true" )
171+ arrayOf(
172+ " --enable_bzlmod=true" ,
173+ " --incompatible_disable_native_repo_rules=true" ,
174+ " --incompatible_autoload_externally=" ,
175+ )
172176 } else if (major >= 7 ) {
173177 arrayOf(" --enable_workspace=true" , " --enable_bzlmod=false" )
174178 } else {
You can’t perform that action at this time.
0 commit comments