pipeline { agent any stages { stage('Configure') { steps { echo 'Configuring Cmake...' mdkir build cd build ls } } stage('Build') { steps { echo 'Building..' } } stage('Test') { steps { echo 'Testing..' } } stage('Deploy') { steps { echo 'Deploying....' } } } }