Groups
Groups
Sign in
Groups
Groups
Jenkins Users
Conversations
About
Send feedback
Help
How to build Jenkins Pipeline with these step
19 views
Skip to first unread message
Jarirr
unread,
Dec 2, 2022, 8:10:14 AM
12/2/22
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Users
agent any
stages {
stage ('Build') {
steps {
// 1.Git Pull pull request#1\
// 2.create container
// 3.Build container
echo 'Running Build Phase.'
}
}
stage ('Unit Test') {
steps {
//1.Run Unit Test
echo 'Running Testing Phase.'
}
}
stage ('Deploy') {
steps {
//1.Run Container
//2.Close Pull Request
echo 'Running Deploy Phase.'
}
}
}
}
Reply all
Reply to author
Forward
0 new messages