47 lines
618 B
Groovy
47 lines
618 B
Groovy
def lualint() {
|
|
make lint-lua
|
|
}
|
|
|
|
def shelllint() {
|
|
make lint-sh
|
|
}
|
|
|
|
run_lint_set = [
|
|
"task1": {
|
|
lualint()
|
|
},
|
|
"task2": {
|
|
shelllint()
|
|
}
|
|
]
|
|
|
|
pipeline {
|
|
agent { label 'gluon-docker' }
|
|
environment {
|
|
GLUON_SITEDIR = "contrib/ci/minimal-site"
|
|
GLUON_TARGET = "x86-64"
|
|
BUILD_LOG = "1"
|
|
}
|
|
stages {
|
|
stage('lint') {
|
|
steps {
|
|
script {
|
|
parallel(run_lint_set)
|
|
}
|
|
}
|
|
}
|
|
stage('docs') {
|
|
steps {
|
|
sh 'make -C docs html'
|
|
}
|
|
}
|
|
stage('build') {
|
|
steps {
|
|
sh 'make update'
|
|
sh 'test -d /dl_cache && ln -s /dl_cache openwrt/dl || true'
|
|
sh 'make -j$(nproc) V=s'
|
|
}
|
|
}
|
|
}
|
|
}
|