From 4e2414cab045e90664808277dae0d812b041a0f1 Mon Sep 17 00:00:00 2001 From: Jose Luis Rivero Date: Mon, 10 Aug 2020 18:35:39 +0200 Subject: [PATCH] Do not fail uploades of source packages --- jenkins-scripts/lib/repository_uploader.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jenkins-scripts/lib/repository_uploader.bash b/jenkins-scripts/lib/repository_uploader.bash index 59cfa1061..cfd3a1569 100644 --- a/jenkins-scripts/lib/repository_uploader.bash +++ b/jenkins-scripts/lib/repository_uploader.bash @@ -85,7 +85,8 @@ upload_dsc_package() # try to upload and if failed, specify the values # see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768046 sudo GNUPGHOME=$HOME/.gnupg reprepro --nothingiserror includedsc $DISTRO ${pkg} || \ - sudo GNUPGHOME=$HOME/.gnupg reprepro --nothingiserror --section science --priority extra includedsc $DISTRO ${pkg} + sudo GNUPGHOME=$HOME/.gnupg reprepro --nothingiserror --section science --priority extra includedsc $DISTRO ${pkg} || \ + echo "MARK_BUILD_UNSTABLE" } NEEDED_HOST_PACKAGES="reprepro openssh-client jq"