From 4eec11ba36d1ef8369499a82a23e3f0718337cf2 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 19 Jun 2019 11:34:59 +0200 Subject: [PATCH] Jenkinsfile: parallel builds and verbose logging --- contrib/ci/Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/contrib/ci/Jenkinsfile b/contrib/ci/Jenkinsfile index 1a233963..52fe58c3 100644 --- a/contrib/ci/Jenkinsfile +++ b/contrib/ci/Jenkinsfile @@ -2,15 +2,17 @@ pipeline { agent { label 'gluon-docker' } environment { GLUON_SITEDIR = "contrib/ci/minimal-site" - GLUON_TARGET = "x86-generic" + GLUON_TARGET = "x86-64" BUILD_LOG = "1" } stages { stage('build') { steps { sh 'ls -la' + sh 'luacheck --std=min .' sh 'make update' - sh 'make' + sh 'make download' + sh 'make -j$(nproc)' } } }