Files
release11-tools/Jenkinsfile

17 lines
357 B
Groovy

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