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

Pipeline Script

Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
101 views

Pipeline Script

Copyright
© © All Rights Reserved
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