Wrap parallel pipelines in single sequential stage.
gitea/icedream/nginx-mod-build-lua/master There was a failure building this commit Details

master
Icedream 2019-03-17 00:56:26 +01:00
parent bab5a9cf53
commit dac21c1639
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 49 additions and 45 deletions

4
Jenkinsfile vendored
View File

@ -2,6 +2,8 @@ def MODULE_GIT_URL="https://github.com/openresty/lua-nginx-module.git"
pipeline {
agent none
stages {
stage('Build') {
parallel {
stage("Build on nginx:stable-alpine") {
agent {
@ -52,4 +54,6 @@ pipeline {
}
}
}
}
}
}