Skip to content

Commit

Permalink
Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi2krishna authored Mar 28, 2023
1 parent 999d376 commit d5eda13
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pipeline {
agent any

stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}

0 comments on commit d5eda13

Please sign in to comment.