diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-15 17:41:58 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-15 17:42:00 +0100 |
commit | 7693ddab22ca076081f8c7413b5b5c41dbbbc5e4 (patch) | |
tree | 65e5bc612bf50daf9a2aa18a428b876d390d5f1a | |
parent | 52008c095db540523c7718ca35927698c69df93e (diff) | |
download | vyos-build-7693ddab22ca076081f8c7413b5b5c41dbbbc5e4.tar.gz vyos-build-7693ddab22ca076081f8c7413b5b5c41dbbbc5e4.zip |
Jenkins: run smoketests without vyos-configd
We currently have a nested regression with the testcases, where they randomly
pass on different hosts but fail on the Jenkins instance. Hopefully this can
sched some light.
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index c8eda285..660dea80 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -155,12 +155,12 @@ pipeline { } stage('QEMU') { parallel { - stage('Smoketests with vyos-configd') { + stage('Smoketests') { when { expression { fileExists 'build/live-image-amd64.hybrid.iso' } } steps { - sh "sudo make testd" + sh "sudo make test" } } stage('Smoketests with vyos-configd and arbitrary config loader') { |