pipeline { agent any stages { stage('Hello') { steps { sh ''' ls -lah ''' echo 'Hello World' } } } }