Avoid {{ for now
authorChristoph Berg <myon@debian.org>
Mon, 13 Jan 2025 10:17:01 +0000 (11:17 +0100)
committerChristoph Berg <myon@debian.org>
Mon, 13 Jan 2025 10:17:01 +0000 (11:17 +0100)
The jjb versions in bookworm and trixie have different handing of { in
templates, avoid that for now.

jenkins/pgapt-jobs.yaml

index 9f366b7d8b3ca09a7f3648f66bc10b2fff3b521d..800915de378303d03a63a4e059d5a93a98d2a632 100644 (file)
                 - 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