diff options
-rw-r--r-- | Jenkinsfile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 9d6e6539..48bf5a7d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -112,12 +112,20 @@ pipeline { } } } - stage('Test') { + stage('Smoketests for RAID-1 system installation') { + when { + expression { fileExists 'build/live-image-amd64.hybrid.iso' } + } + steps { + sh "sudo make testraid" + } + } + stage('Smoketests') { when { expression { return params.BUILD_SMOKETESTS } } parallel { - stage('Smoketests') { + stage('CLI validation') { when { expression { fileExists 'build/live-image-amd64.hybrid.iso' } } @@ -125,7 +133,7 @@ pipeline { sh "sudo make test" } } - stage('Smoketests with vyos-configd and arbitrary config loader') { + stage('vyos-configd and arbitrary config loader') { when { expression { fileExists 'build/live-image-amd64.hybrid.iso' } } @@ -133,14 +141,6 @@ pipeline { sh "sudo make testc" } } - stage('Smoketests for RAID-1 system installation') { - when { - expression { fileExists 'build/live-image-amd64.hybrid.iso' } - } - steps { - sh "sudo make testraid" - } - } } } } |