gluon/Jenkinsfile
2019-08-13 17:49:47 +02:00

18 lines
337 B
Groovy

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'
}
}
}
}