From 217b3f7ee932ebb715710f1d91e128a9d0f4f4b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Purkh=C3=BAs?= Date: Thu, 26 Oct 2023 08:28:31 +0000 Subject: [PATCH] Disable bzlmod in CI (#394) --- .bazelci/presubmit.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 425bd8f5..60b6c1fc 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -25,6 +25,10 @@ tasks: - "//..." test_targets: - "//..." + build_flags: + - "--noenable_bzlmod" + test_flags: + - "--noenable_bzlmod" rbe_ubuntu1604: name: Rules on Linux (RBE) platform: rbe_ubuntu1604 @@ -37,8 +41,10 @@ tasks: - "//..." build_flags: - "--config=remote" + - "--noenable_bzlmod" test_flags: - "--config=remote" + - "--noenable_bzlmod" rbe_ubuntu1604_no_strict_deps: name: Rules on Linux (RBE) without strict deps platform: rbe_ubuntu1604 @@ -52,9 +58,11 @@ tasks: build_flags: - "--@rules_dotnet//dotnet/settings:strict_deps=false" - "--config=remote" + - "--noenable_bzlmod" test_flags: - "--@rules_dotnet//dotnet/settings:strict_deps=false" - "--config=remote" + - "--noenable_bzlmod" macos: name: Rules on MacOS platform: macos @@ -65,6 +73,10 @@ tasks: - "//..." test_targets: - "//..." + build_flags: + - "--noenable_bzlmod" + test_flags: + - "--noenable_bzlmod" examples-windows: name: Examples on Windows platform: windows @@ -76,6 +88,10 @@ tasks: - "//..." test_targets: - "//..." + build_flags: + - "--noenable_bzlmod" + test_flags: + - "--noenable_bzlmod" examples-ubuntu1804: name: Examples on Ubuntu 18.04 platform: ubuntu1804 @@ -87,6 +103,10 @@ tasks: - "//..." test_targets: - "//..." + build_flags: + - "--noenable_bzlmod" + test_flags: + - "--noenable_bzlmod" examples-macos: name: Examples on macOS platform: macos @@ -98,6 +118,10 @@ tasks: - "//..." test_targets: - "//..." + build_flags: + - "--noenable_bzlmod" + test_flags: + - "--noenable_bzlmod" examples-rbe_ubuntu1604: name: Examples on Ubuntu 18.04 (RBE) platform: rbe_ubuntu1604 @@ -111,8 +135,10 @@ tasks: - "//..." build_flags: - "--config=remote" + - "--noenable_bzlmod" test_flags: - "--config=remote" + - "--noenable_bzlmod" examples-rbe_ubuntu1604_no_strict_deps: name: Examples on Ubuntu 18.04 (RBE) without strict deps platform: rbe_ubuntu1604 @@ -127,6 +153,8 @@ tasks: build_flags: - "--config=remote" - "--@rules_dotnet//dotnet/settings:strict_deps=false" + - "--noenable_bzlmod" test_flags: - "--config=remote" - "--@rules_dotnet//dotnet/settings:strict_deps=false" + - "--noenable_bzlmod"