Files
release11-tools/Jenkinsfile
2023-03-18 08:09:45 +01:00

20 lines
429 B
Groovy

pipeline {
agent any
stages {
stage('Run Tools Deployment Job') {
steps {
sh(
script: 'env'
)
build(
job: '../tools-deployment',
parameters: [
string(name: 'TOOLS_BRANCH', value: "${GIT_BRANCH}")
]
)
}
}
}
}