pipeline { agent any stages { stage('BuildIt') { steps { echo 'Building..' } } stage('TestIt') { steps { echo 'Testing..' } } stage('DeployIt') { steps { echo 'Deploying....' } } } }