Skip to content

Commit

Permalink
Create Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
KamyNz authored Oct 26, 2023
1 parent 4443c3e commit 03dbd76
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// pipeline must be top-level
pipeline {

//where to execture. This is equals to node {groovy}
agent any

//Where the work happens
stages {

stage("Build"){
steps {
echo "Building app"
}
}

stage("Test"){
steps {
echo "Testing app"
}
}

stage("Deploy"){
steps {
echo "Deploying app"

}
}

}

}

0 comments on commit 03dbd76

Please sign in to comment.