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