diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-09-25 21:10:43 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-09-25 21:10:52 +0200 |
commit | 2a5f6b12fbab67c42d957867faa05a6e9417ed82 (patch) | |
tree | d3630028bce06a46a021a21e0fb2818b2fc858d2 /Jenkinsfile | |
parent | 0bcc198ac1d55f980f74e14f70d85625999e55df (diff) | |
download | vyos-build-2a5f6b12fbab67c42d957867faa05a6e9417ed82.tar.gz vyos-build-2a5f6b12fbab67c42d957867faa05a6e9417ed82.zip |
Jenkins: run parallel tests with and without vyos-configd
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 9f9c6377..5571e87d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -153,11 +153,23 @@ pipeline { } } stage('Test ISO') { - when { - expression { fileExists 'build/live-image-amd64.hybrid.iso' } - } - steps { - sh "sudo make test" + parallel { + stage('Without vyos-configd') { + when { + expression { fileExists 'build/live-image-amd64.hybrid.iso' } + } + steps { + sh "sudo make test" + } + } + stage('With vyos-configd') { + when { + expression { fileExists 'build/live-image-amd64.hybrid.iso' } + } + steps { + sh "sudo make testd" + } + } } } } |