From 970b96dd03e2d52536425391e7918c45911f5067 Mon Sep 17 00:00:00 2001 From: Sam Delmerico Date: Thu, 4 Aug 2022 14:00:08 -0400 Subject: [PATCH] set USE_RBE=false in Soong integration tests RBE is already disabled for this test on CI. Locally, the mock checkout created for the Soong integration tests does not set up RBE properly, so we should just disable it explicitly so that the integration tests can be run locally. Test: build/soong/tests/run_integration_tests.sh Change-Id: I38875a02b549a9d8c8368d6287c4516518d20e34 --- tests/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib.sh b/tests/lib.sh index 69ad2013d..6210e779e 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -111,7 +111,7 @@ function setup { # shellcheck disable=SC2120 function run_soong { - build/soong/soong_ui.bash --make-mode --skip-ninja --skip-config --soong-only --skip-soong-tests "$@" + USE_RBE=false build/soong/soong_ui.bash --make-mode --skip-ninja --skip-config --soong-only --skip-soong-tests "$@" } function create_mock_bazel {