Added Stages to Jenkinsfile

This commit is contained in:
chris007de
2016-04-29 15:38:56 +02:00
parent d4b8a569f9
commit 514968add6

8
Jenkinsfile vendored
View File

@@ -1,4 +1,10 @@
node { node {
git url: 'https://github.com/freifunkMUC/site-ffm.git' stage 'Checkout'
checkout scm
stage 'Build'
sh "make V=s" sh "make V=s"
stage 'Archive'
archive 'output/**/*'
} }