Jenkinsfile: fix indentation

This commit is contained in:
Matthias Schiffer 2019-12-29 15:59:16 +01:00
parent 600e67350a
commit 8400512a58
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C

View File

@ -19,8 +19,8 @@ pipeline {
agent { label 'gluon-docker' } agent { label 'gluon-docker' }
environment { environment {
GLUON_SITEDIR = "contrib/ci/minimal-site" GLUON_SITEDIR = "contrib/ci/minimal-site"
GLUON_TARGET = "x86-64" GLUON_TARGET = "x86-64"
BUILD_LOG = "1" BUILD_LOG = "1"
} }
stages { stages {
stage('lint') { stage('lint') {
@ -38,8 +38,8 @@ pipeline {
stage('build') { stage('build') {
steps { steps {
sh 'make update' sh 'make update'
sh 'test -d /dl_cache && ln -s /dl_cache openwrt/dl || true' sh 'test -d /dl_cache && ln -s /dl_cache openwrt/dl || true'
sh 'make -j$(nproc) V=s' sh 'make -j$(nproc) V=s'
} }
} }
} }