From 57f3ab36cfda5985b419c4f076dd6059e577fd1e Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Wed, 18 Aug 2021 07:37:32 +0200 Subject: [PATCH] [checkupdates_runner] ignore return values --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 18933bd6c6..5d5fa64d16 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -167,12 +167,12 @@ checkupdates_runner: - url_host=$(echo "${CI_REPOSITORY_URL}" | sed -e 's|https\?://gitlab-ci-token:.*@|ssh://git@|g') - git remote set-url --push origin "${url_host}" script: - - fdroid checkupdates --allow-dirty --auto --commit ${CHECKUPDATES_APPIDS} | tee /tmp/out + - fdroid checkupdates --allow-dirty --auto --commit ${CHECKUPDATES_APPIDS} 2>&1 | tee /tmp/out || true - git pull --rebase origin master # when two jobs try to push at the same time they occasionally fail, so try one more time if it fails - git push origin HEAD:master || (git pull --rebase origin master && git push origin HEAD:master) - echo "============== Summary =====================" - - 'grep -v "INFO: Processing" /tmp/out' + - 'grep -v "INFO: Processing" /tmp/out' || true fdroid build: image: registry.gitlab.com/fdroid/ci-images-client:latest