pipeline { agent any stages { stage('test') { steps { sh '/bin/true' ls -la } } } }