pipeline { agent any stages { stage('Compile') { steps { echo 'Building..' sh 'cmake . && make' } } } }