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