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