Add jenkinsfile

This commit is contained in:
lemoer 2019-06-17 20:18:50 +02:00 committed by Martin Weinelt
parent eeb745d717
commit 2255c5179a

17
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,17 @@
pipeline {
agent any
environment {
GLUON_SITEDIR = "contrib/ci/minimal-site"
GLUON_TARGET = "x86-generic"
BUILD_LOG = "1"
}
stages {
stage('build') {
steps {
sh 'ls -la'
sh 'make update'
sh 'make'
}
}
}
}