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

20 lines
441 B
Groovy

pipeline {
agent { label 'gluon-docker' }
environment {
GLUON_SITEDIR = "contrib/ci/minimal-site"
GLUON_TARGET = "x86-64"
BUILD_LOG = "1"
}
stages {
stage('build') {
steps {
sh 'ls -la'
sh 'luacheck --std=min .'
sh 'make update'
sh 'make download'
sh 'make -j$(nproc)'
}
}
}
}