File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
src/main/kotlin/io/bazel/kotlin/test Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 3636# bazelci pipeline
3737matrix :
3838 integration_shard_flags :
39- - ["--test_tag_filters=shard_0", "--config=rbe" ]
40- - ["--test_tag_filters=shard_1", "--config=rbe" ]
41- - ["--test_tag_filters=shard_2", "--config=rbe" ]
39+ - ["--test_tag_filters=shard_0"]
40+ - ["--test_tag_filters=shard_1"]
41+ - ["--test_tag_filters=shard_2"]
4242 test_flags :
4343 - ["--enable_bzlmod=true"]
4444validate_config : 1
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