From 19080e348af53374ba03090a0bb4664ac552e5bd Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 6 Feb 2024 12:11:03 +0100 Subject: [PATCH] ci: refs#6706 Jenkinsfile print properties --- Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a49405cdc..20baa8ace 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,12 +19,17 @@ node { RUN_TESTS = !PROTECTED_BRANCH && FROM_GIT RUN_BUILD = PROTECTED_BRANCH && FROM_GIT + // https://www.jenkins.io/doc/book/pipeline/jenkinsfile/#using-environment-variables + echo "Node: ${env.NODE_NAME}" + echo "Workspace: ${env.WORKSPACE}" + configFileProvider([ configFile(fileId: 'salix.properties', variable: 'PROPS_FILE') ]) { def props = readProperties file: PROPS_FILE - env.DEBUG = props.DEBUG + props.each { key, value -> env[key] = value } + props.each { key, value -> println "${key}: ${value}" } } if (PROTECTED_BRANCH) { @@ -33,15 +38,10 @@ node { variable: 'BRANCH_PROPS_FILE') ]) { def props = readProperties file: BRANCH_PROPS_FILE - env.BACK_REPLICAS = props.BACK_REPLICAS - env.NODE_ENV = props.NODE_ENV + props.each { key, value -> env[key] = value } + props.each { key, value -> println "${key}: ${value}" } } } - - // https://www.jenkins.io/doc/book/pipeline/jenkinsfile/#using-environment-variables - echo "Node: ${NODE_NAME}" - echo "Workspace: ${WORKSPACE}" - echo "Debug: ${env.DEBUG}" } } pipeline {