Disable Kokoro builds with REACTOR_EMIT_DEBUG_INFO/PRINT_LOCATION
Downloading Boost has been flaky lately. See also
https://swiftshader-review.googlesource.com/c/SwiftShader/+/61388
Bug: b/173110985
Change-Id: I11b66ecf9c92d48369babbeab42420387d5687dc
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/61508
Kokoro-Result: kokoro <noreply+kokoro@google.com>
Reviewed-by: Sean Risser <srisser@google.com>
Tested-by: Nicolas Capens <nicolascapens@google.com>
diff --git a/tests/kokoro/gcp_ubuntu/docker.sh b/tests/kokoro/gcp_ubuntu/docker.sh
index 8dcf5d1..848e3c4 100755
--- a/tests/kokoro/gcp_ubuntu/docker.sh
+++ b/tests/kokoro/gcp_ubuntu/docker.sh
@@ -98,20 +98,20 @@
cd ..
build/ReactorUnitTests --gtest_filter=ReactorUnitTests.EmitAsm
-status "Building with REACTOR_EMIT_DEBUG_INFO"
+#status "Building with REACTOR_EMIT_DEBUG_INFO"
+#
+#cd build
+#cmake .. "-DREACTOR_EMIT_DEBUG_INFO=1"
+#cmake --build . --target ReactorUnitTests -- -j $(nproc)
+#cmake .. "-DREACTOR_EMIT_DEBUG_INFO=0"
+#cd ..
-cd build
-cmake .. "-DREACTOR_EMIT_DEBUG_INFO=1"
-cmake --build . --target ReactorUnitTests -- -j $(nproc)
-cmake .. "-DREACTOR_EMIT_DEBUG_INFO=0"
-cd ..
-
-status "Building with REACTOR_EMIT_PRINT_LOCATION"
-
-cd build
-cmake .. "-DREACTOR_EMIT_PRINT_LOCATION=1"
-cmake --build . --target ReactorUnitTests -- -j $(nproc)
-cmake .. "-DREACTOR_EMIT_PRINT_LOCATION=0"
-cd ..
+#status "Building with REACTOR_EMIT_PRINT_LOCATION"
+#
+#cd build
+#cmake .. "-DREACTOR_EMIT_PRINT_LOCATION=1"
+#cmake --build . --target ReactorUnitTests -- -j $(nproc)
+#cmake .. "-DREACTOR_EMIT_PRINT_LOCATION=0"
+#cd ..
status "Done"
diff --git a/tests/kokoro/gcp_windows/continuous.bat b/tests/kokoro/gcp_windows/continuous.bat
index e872078..dde0287 100644
--- a/tests/kokoro/gcp_windows/continuous.bat
+++ b/tests/kokoro/gcp_windows/continuous.bat
@@ -57,16 +57,16 @@
cmake "-DREACTOR_EMIT_ASM_FILE=0" .. || goto :error
REM Incrementally build with REACTOR_EMIT_DEBUG_INFO to ensure it builds
-cd %SRC%\build || goto :error
-cmake "-DREACTOR_EMIT_DEBUG_INFO=1" .. || goto :error
-cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error
-cmake "-DREACTOR_EMIT_DEBUG_INFO=0" .. || goto :error
+REM cd %SRC%\build || goto :error
+REM cmake "-DREACTOR_EMIT_DEBUG_INFO=1" .. || goto :error
+REM cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error
+REM cmake "-DREACTOR_EMIT_DEBUG_INFO=0" .. || goto :error
REM Incrementally build with REACTOR_EMIT_PRINT_LOCATION to ensure it builds
-cd %SRC%\build || goto :error
-cmake "-DREACTOR_EMIT_PRINT_LOCATION=1" .. || goto :error
-cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error
-cmake "-DREACTOR_EMIT_PRINT_LOCATION=0" .. || goto :error
+REM cd %SRC%\build || goto :error
+REM cmake "-DREACTOR_EMIT_PRINT_LOCATION=1" .. || goto :error
+REM cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error
+REM cmake "-DREACTOR_EMIT_PRINT_LOCATION=0" .. || goto :error
exit /b 0