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