diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-01 08:15:17 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-11-01 08:15:24 +0100 |
commit | ced496839e07427050a9d8c4950fd3a5a5cec0a0 (patch) | |
tree | 22a5522721e2557c32ebbd145ca0cc6f1d9ac588 /Jenkinsfile | |
parent | 320c1c49c3d698c55d037c07e138b244834feab6 (diff) | |
download | vyos-build-ced496839e07427050a9d8c4950fd3a5a5cec0a0.tar.gz vyos-build-ced496839e07427050a9d8c4950fd3a5a5cec0a0.zip |
Jenkins: run smoketests with vyos-configd and arbitrary config loader
Diffstat (limited to 'Jenkinsfile')
-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' } |