pipeline { agent any stages { stage('Stage 1') { steps { node { checkout scm stash 'source' } echo 'Hello world!' } } } }