]> rtime.felk.cvut.cz Git - testing.git/commitdiff
jenkins
authorMichal Sojka <sojkam1@fel.cvut.cz>
Wed, 26 Apr 2017 19:26:38 +0000 (21:26 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Wed, 26 Apr 2017 19:26:38 +0000 (21:26 +0200)
aaa/Jenkinsfile [new file with mode: 0644]

diff --git a/aaa/Jenkinsfile b/aaa/Jenkinsfile
new file mode 100644 (file)
index 0000000..88f2ca1
--- /dev/null
@@ -0,0 +1,26 @@
+
+
+pipeline {
+    agent any
+
+    stages {
+        stage('Build') {
+            steps {
+                echo 'Building..'
+               sh 'date'
+            }
+        }
+        stage('Test') {
+            steps {
+                echo 'Testing..'
+            }
+        }
+        stage('Deploy') {
+            steps {
+                echo 'Deploying....'
+            }
+        }
+    }
+}
+
+