commit | 7af5ea5fcf43bc143f6711b706f4c62943670927 | [log] [tgz] |
---|---|---|
author | ravi2krishna <ravi2krishna@gmail.com> | Sun Aug 08 11:23:15 2021 +0530 |
committer | ravi2krishna <ravi2krishna@gmail.com> | Sun Aug 08 11:23:15 2021 +0530 |
tree | 1f94b9d4b48c9f6bf521f8594cecfd82442be3d1 | |
parent | bab6e216825b300a452bef597b1012dc38f358d0 [diff] |
pipeline
diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b982250 --- /dev/null +++ b/Jenkinsfile
@@ -0,0 +1,21 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +}