pipeline { agent any stages { stage('Hello') { steps { sh 'echo "Hello Jenkins!"' sh 'whoami' } } } }