pipeline{ agent any stages { stage('Build') { steps{ echo "Building the Project.........." } } stage('Test') { steps{ echo "Testing the Project.........." } } stage('Deploy') { steps{ echo "Deploying the Project.........." } } } }
pipeline{ agent any stages { stage('Build') { steps{ echo "Building the Project.........." } } stage('Test') { steps{ echo "Testing the Project.........." } } stage('Deploy') { steps{ echo "Deploying the Project.........." } } } }