From e8043103cb053d175c9cdb47d1a7471fd2b8f40a Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Mon, 13 Jan 2025 11:17:01 +0100 Subject: [PATCH] Avoid {{ for now The jjb versions in bookworm and trixie have different handing of { in templates, avoid that for now. --- jenkins/pgapt-jobs.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jenkins/pgapt-jobs.yaml b/jenkins/pgapt-jobs.yaml index 9f366b7..800915d 100644 --- a/jenkins/pgapt-jobs.yaml +++ b/jenkins/pgapt-jobs.yaml @@ -897,11 +897,12 @@ - shell: | cd /run/schroot/mount || exit 0 ls -al + rc=0 for session in $(find . -mindepth 1 -maxdepth 1 -mtime +1); do sudo schroot -c $(basename $session) -e rc=1 done - exit ${{rc:-0}} + exit $rc publishers: - ircbot: strategy: any-failure -- 2.39.5