commit | 2a15eb8965bc1405697e5c6b438c58987e1a73f1 | [log] [tgz] |
---|---|---|
author | Ravi <ravi2krishna@gmail.com> | Tue Apr 14 15:48:21 2020 +0530 |
committer | GitHub <noreply@github.com> | Tue Apr 14 15:48:21 2020 +0530 |
tree | a1aea1b40b1d2d2eece799739a8fe95e64f2baa0 | |
parent | 40464663a062f6f6d783ad288df4c6ffdbbaf2e6 [diff] |
pipeline syntax
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....' + } + } + } +}