Skip to content

Latest commit

 

History

History
24 lines (24 loc) · 235 Bytes

README.md

File metadata and controls

24 lines (24 loc) · 235 Bytes

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.........." } } } }