diff --git a/contrib/ci/Jenkinsfile b/contrib/ci/Jenkinsfile index 52fe58c3..cb3d6683 100644 --- a/contrib/ci/Jenkinsfile +++ b/contrib/ci/Jenkinsfile @@ -6,10 +6,18 @@ pipeline { BUILD_LOG = "1" } stages { + stage('lint') { + steps { + sh 'luacheck --std=min {packages,scripts,target}' + } + } + stage('docs') { + steps { + sh' make -C docs html' + } + } stage('build') { steps { - sh 'ls -la' - sh 'luacheck --std=min .' sh 'make update' sh 'make download' sh 'make -j$(nproc)'