From 971452237790be915dfa5911a92c5f63c7f195fd Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Mon, 14 Jan 2019 22:18:06 +0100 Subject: [PATCH] archlinux: skip running tests for continious rebuilds Running check tests does not alter the build 'artifact' i.e. pkg.tar.xz. Passing --nocheck skips running tests and should speed up builds and lead to less build failures. Signed-off-by: Holger Levsen --- bin/reproducible_build_archlinux_pkg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh index ac0d84ab..daf90742 100755 --- a/bin/reproducible_build_archlinux_pkg.sh +++ b/bin/reproducible_build_archlinux_pkg.sh @@ -211,7 +211,7 @@ second_build() { NEW_NUM_CPU=$(echo $NUM_CPU-1|bc) local FUTURE_STATE="disabled" local MAKEPKG_ENV_VARS="SOURCE_DATE_EPOCH='$SOURCE_DATE_EPOCH' PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'" - local MAKEPKG_OPTIONS="--syncdeps --noconfirm" + local MAKEPKG_OPTIONS="--syncdeps --noconfirm --nocheck" if [ "$(hostname)" = "osuosl-build170-amd64" ] ; then FUTURE_STATE="enabled" MAKEPKG_ENV_VARS="$MAKEPKG_ENV_VARS GIT_SSL_NO_VERIFY=1" -- GitLab