pipeline { agent any stages { stage('build') { steps { sh 'echo "hello world"' } } stage('deploy') { steps { echo 'ok' } } } }