From 8b2d5aea402844a8cb4c01b35b0428b3c6c7660b Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 29 May 2024 16:46:43 +0200 Subject: [PATCH] ci: do not use `${..}` variable notation in jjb templates It seems that `${RUN_DISPLAY_URL}` is not expanded correctly in the Jenkins Job Builder YAML files anymore. `$RUN_DISPLAY_URL` should be the correct notation. Signed-off-by: Niels de Vos --- jobs/ci-job-validation.yaml | 2 +- jobs/jjb-validate.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jobs/ci-job-validation.yaml b/jobs/ci-job-validation.yaml index 0c38df96d..915a98217 100644 --- a/jobs/ci-job-validation.yaml +++ b/jobs/ci-job-validation.yaml @@ -20,7 +20,7 @@ lightweight-checkout: true triggers: - github-pull-request: - status-url: ${RUN_DISPLAY_URL} + status-url: $RUN_DISPLAY_URL status-context: ci/centos/job-validation trigger-phrase: '/(re)?test ((all)|(ci/centos/job-validation))' permit-all: true diff --git a/jobs/jjb-validate.yaml b/jobs/jjb-validate.yaml index 2f3fb8a2b..b2c3ffa31 100644 --- a/jobs/jjb-validate.yaml +++ b/jobs/jjb-validate.yaml @@ -28,7 +28,7 @@ lightweight-checkout: false triggers: - github-pull-request: - status-url: ${RUN_DISPLAY_URL} + status-url: $RUN_DISPLAY_URL status-context: ci/centos/jjb-validate trigger-phrase: "/(re)?test ((all)|(ci/centos/jjb-validate))" permit-all: true