pipeline { agent none stages { stage('test') { steps { script { echo "Testing the application..." } } } stage('build') { steps { script { echo "Building the application..." } } } stage('deploy') { steps { script { echo "Deploying the application..." } } } } }