Files
release11-tools/Jenkinsfile

20 lines
401 B
Groovy

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