Jenkinsfile: fix indentation

This commit is contained in:
Matthias Schiffer 2019-12-29 15:59:16 +01:00 committed by Martin Weinelt
parent 2c071657ac
commit 4de6f3ff36
1 changed files with 4 additions and 4 deletions

View File

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