gluon/contrib/ci/Jenkinsfile

18 lines
358 B
Groovy

pipeline {
agent { label 'gluon-docker' }
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'
}
}
}
}