pipeline { agent any stages { stage('Build') { steps { sh 'printenv' sh 'build.sh' } } } }