aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@vespa.ai>2024-06-03 23:52:30 +0200
committerArnstein Ressem <aressem@vespa.ai>2024-06-03 23:52:30 +0200
commitdd9e4092f894c557299b62c873b31c30575f104b (patch)
treeed6f466b1196fcdb737bb101d23679f8544762be
parent201bf56d8d357fd1344a410e683f00d62ccafeac (diff)
Reduce threads.
-rwxr-xr-x.buildkite/cpp-test.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/.buildkite/cpp-test.sh b/.buildkite/cpp-test.sh
index 28133f1c70b..5bdf39da93d 100755
--- a/.buildkite/cpp-test.sh
+++ b/.buildkite/cpp-test.sh
@@ -3,8 +3,9 @@
set -euo pipefail
set +e
-if ! ctest3 --output-junit "$LOG_DIR/vespa-cpptest-results.xml" --output-on-failure -j "$NUM_CPP_THREADS" ; then
- sleep 3600
+#if ! ctest3 --output-junit "$LOG_DIR/vespa-cpptest-results.xml" --output-on-failure -j "$NUM_CPP_THREADS" ; then
+if ! ctest3 --output-junit "$LOG_DIR/vespa-cpptest-results.xml" --output-on-failure -j 12 ; then
+ #sleep 3600
exit 1
fi