pipeline { agent { label 'mylabel'} options { skipDefaultCheckout() } stages { stage('Run') { steps { timestamps { sh 'ls' }}}} }