Included folder properties to inject base env variables

This commit is contained in:
2025-09-25 19:25:49 +02:00
parent 7bfb9bdf89
commit 6245e522ba

8
Jenkinsfile vendored
View File

@@ -1,6 +1,12 @@
@Library('utils') _
pipeline { pipeline {
agent any agent any
options {
withFolderProperties()
}
parameters { parameters {
choice( choice(
name: 'ENVIRONMENT', name: 'ENVIRONMENT',
@@ -10,7 +16,7 @@ pipeline {
} }
environment { environment {
// LC_IMG_TAG = "${mapBranchToEnv(env.BRANCH_NAME)}" // LC_IMG_TAG = "${utils.mapBranchToEnv(env.BRANCH_NAME)}"
LC_IMG_TAG = 'qa_test' LC_IMG_TAG = 'qa_test'
} }