From 1ff29c5c87a159adedf07b5e69e79d4c5ba90936 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Tue, 19 Feb 2019 11:25:25 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B0=D1=83=D0=B7=D0=B0=20=D0=BF=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=20=D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B8=D1=80?= =?UTF-8?q?=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=D0=BC=20=D0=BD=D0=BE=D0=B2?= =?UTF-8?q?=D0=BE=D0=B3=D0=BE=20=D0=B2=D0=B0=D1=80=D0=B8=D0=B0=D0=BD=D1=82?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmake.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake.sh b/cmake.sh index ef5a47a..ccbc4c8 100755 --- a/cmake.sh +++ b/cmake.sh @@ -199,11 +199,11 @@ fi if [ -x "$(command -v parallel)" ]; then PV=$(parallel --version | head -n 1 | awk '{ print $3; }') if [ "$PV" -lt "20131121" ]; then - parallel -r generate_configuration ::: "${BUILD_TYPES[@]}" + parallel --delay 2 -r generate_configuration ::: "${BUILD_TYPES[@]}" elif [ "$PV" -lt "20141023" ]; then - parallel -r --no-notice generate_configuration ::: "${BUILD_TYPES[@]}" + parallel --delay 2 -r --no-notice generate_configuration ::: "${BUILD_TYPES[@]}" else - parallel -r --will-cite generate_configuration ::: "${BUILD_TYPES[@]}" + parallel --delay 2 -r --will-cite generate_configuration ::: "${BUILD_TYPES[@]}" fi else for T in "${BUILD_TYPES[@]}"; do generate_configuration "${T}"; done