diff options
-rw-r--r-- | Jenkinsfile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 42264720..9c2ec4e5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -154,7 +154,7 @@ pipeline { } stage('QEMU') { parallel { - stage('Testcases without vyos-configd') { + stage('Smoketests without vyos-configd') { when { expression { fileExists 'build/live-image-amd64.hybrid.iso' } } @@ -162,7 +162,7 @@ pipeline { sh "sudo make test" } } - stage('Testcases with vyos-configd') { + stage('Smoketests with vyos-configd') { when { expression { fileExists 'build/live-image-amd64.hybrid.iso' } } @@ -170,6 +170,14 @@ pipeline { sh "sudo make testd" } } + stage('Smoketests with vyos-configd and arbitrary config loader') { + when { + expression { fileExists 'build/live-image-amd64.hybrid.iso' } + } + steps { + sh "sudo make testc" + } + } stage('Build QEMU image') { when { expression { fileExists 'build/live-image-amd64.hybrid.iso' } |