diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-09 11:14:26 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-09 23:26:15 +0100 |
commit | 017abd48cb3f0b4aa7245a3ab4ba2561734be269 (patch) | |
tree | 83a1ffac4f165ca2fa5c2df19ea2dc39af72239d /Jenkinsfile | |
parent | 141172a810956eab7a897bd34b76a26cf1384495 (diff) | |
download | vyos-build-017abd48cb3f0b4aa7245a3ab4ba2561734be269.tar.gz vyos-build-017abd48cb3f0b4aa7245a3ab4ba2561734be269.zip |
Jenkins: run "make testraid" for RAID-1 verification
(cherry picked from commit 4a21175243e0dc86b710cf4754834241d0cfcfd9)
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index bcbe8d78..83ad8baf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -131,6 +131,14 @@ 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" + } + } } } } |