pipeline { agent any stages { stage('Build') { steps { sh 'gcc --version' sh ''' echo "Multiline shell steps works too" ls -lah ''' } } } }