projects
/
osm
/
vim-emu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8256ce
)
Added Jenkisnfile to migrate CI to pipeline setup
author
peusterm
<manuel.peuster@uni-paderborn.de>
Mon, 18 Sep 2017 15:03:10 +0000
(17:03 +0200)
committer
peusterm
<manuel.peuster@uni-paderborn.de>
Mon, 18 Sep 2017 15:03:10 +0000
(17:03 +0200)
Signed-off-by: peusterm <manuel.peuster@uni-paderborn.de>
Jenkinsfile
[new file with mode: 0644]
patch
|
blob
diff --git a/Jenkinsfile
b/Jenkinsfile
new file mode 100644
(file)
index 0000000..
fa3135f
--- /dev/null
+++ b/
Jenkinsfile
@@ -0,0
+1,23
@@
+#!groovy
+
+pipeline {
+ agent any
+
+ stages {
+ stage('Build') {
+ steps {
+ echo 'Building..'
+ }
+ }
+ stage('Test') {
+ steps {
+ echo 'Testing..'
+ }
+ }
+ stage('Deploy') {
+ steps {
+ echo 'Deploying....'
+ }
+ }
+ }
+}