0% found this document useful (0 votes)
113 views2 pages

Jenkins CI/CD Pipeline Guide

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)
113 views2 pages

Jenkins CI/CD Pipeline Guide

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

Jenkins url

[Link]
pipeline {

agents any

stages {

stage("Code"){
steps{
git url: "[Link] , 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