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