Skip to content

Commit

Permalink
Create Jenkinsfile2
Browse files Browse the repository at this point in the history
  • Loading branch information
williamlui00 authored Aug 25, 2024
1 parent 1d7e2b6 commit 8aea9ee
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Jenkinsfile2
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
node{
agent(any)
stage("Build"){
script{
echo "This is build stage"
}
}
stage("Test"){
script{
echo "This is test stage"
}
}
stage("deploy"){
script{
echo "This is deploy stage"
}
}
}

0 comments on commit 8aea9ee

Please sign in to comment.