pipeline { agent { label 'nomad' } stages { stage ('Hello') { script { sh "echo 'Hello World!'" } } } }