fix(ci): quote matrix PROCESS_NEW so R receives uppercase FALSE/TRUE
Some checks failed
ci/crow/cron/process-updates/14 Pipeline was successful
ci/crow/cron/process-updates/9 Pipeline failed

Unquoted `PROCESS_NEW: FALSE` is parsed as a YAML boolean and interpolated
into the R command as lowercase `false`, causing `process_new = false` and
`Error: object 'false' not found`. Quoting keeps the literal FALSE/TRUE that
R expects.
This commit is contained in:
Patrick Schratz 2026-06-17 11:35:44 +02:00
commit 76f677ba5b
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -46,98 +46,98 @@ matrix:
R_VERSION: 4.5.3
IMG: alpine:3.24
OS_ID: alpine322
PROCESS_NEW: FALSE
PROCESS_NEW: "FALSE"
- OS: alpine-322
ARCH: arm64
AGENT: gaia
R_VERSION: 4.5.3
IMG: alpine:3.24
OS_ID: alpine322
PROCESS_NEW: FALSE
PROCESS_NEW: "FALSE"
- OS: alpine-323
ARCH: amd64
AGENT: artemis
R_VERSION: 4.5.3
IMG: alpine:3.24
OS_ID: alpine323
PROCESS_NEW: FALSE
PROCESS_NEW: "FALSE"
- OS: alpine-323
ARCH: arm64
AGENT: gaia
R_VERSION: 4.5.3
IMG: alpine:3.24
OS_ID: alpine323
PROCESS_NEW: FALSE
PROCESS_NEW: "FALSE"
- OS: redhat-8
ARCH: amd64
AGENT: artemis
R_VERSION: 4.4.3
IMG: redhat:8
OS_ID: rhel8
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: redhat-8
ARCH: arm64
AGENT: gaia
R_VERSION: 4.4.3
IMG: redhat:8
OS_ID: rhel8
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: redhat-9
ARCH: amd64
AGENT: artemis
R_VERSION: 4.4.3
IMG: redhat:9
OS_ID: rhel9
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: redhat-9
ARCH: arm64
AGENT: gaia
R_VERSION: 4.4.3
IMG: redhat:9
OS_ID: rhel9
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: redhat-10
ARCH: amd64
AGENT: artemis
R_VERSION: 4.5.3
IMG: redhat:10
OS_ID: rhel10
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: redhat-10
ARCH: arm64
AGENT: gaia
R_VERSION: 4.5.3
IMG: redhat:10
OS_ID: rhel10
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: ubuntu-2204
ARCH: amd64
AGENT: artemis
R_VERSION: 4.4.3
IMG: ubuntu:jammy
OS_ID: jammy
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: ubuntu-2204
ARCH: arm64
AGENT: gaia
R_VERSION: 4.4.3
IMG: ubuntu:jammy
OS_ID: jammy
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: ubuntu-2404
ARCH: amd64
AGENT: artemis
R_VERSION: 4.4.3
IMG: ubuntu:noble
OS_ID: noble
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
- OS: ubuntu-2404
ARCH: arm64
AGENT: gaia
R_VERSION: 4.4.3
IMG: ubuntu:noble
OS_ID: noble
PROCESS_NEW: TRUE
PROCESS_NEW: "TRUE"
steps:
- name: 'Processing Updates'