0% found this document useful (0 votes)
102 views

Pipeline Script

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
102 views

Pipeline Script

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Jenkins url

http://54.86.14.24:8080/
pipeline {

agents any

stages {

stage("Code"){
steps{
git url: "https://github.com/LondheShubham153/node-todo-cicd.git" , branch:
"master"
echo "Code Cloned Successfully"
}
}
stage("Build"){
steps{
echo "Code Built Successfully"
}
}
stage("Test"){
steps{
echo "Build Tested Successfully"
}
}
stage("Deploy"){
steps{
echo "App Deployed Successfully"
}
}
}
}

You might also like