diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-09 11:14:26 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-09 22:40:44 +0100 |
commit | 4a21175243e0dc86b710cf4754834241d0cfcfd9 (patch) | |
tree | 988f92b1a0f6bd7bd42bc163359dfc82c4da1c23 /Jenkinsfile | |
parent | 76f59a39153f4e5880602f4b439efabb2dff3b07 (diff) | |
download | vyos-build-4a21175243e0dc86b710cf4754834241d0cfcfd9.tar.gz vyos-build-4a21175243e0dc86b710cf4754834241d0cfcfd9.zip |
Jenkins: run "make testraid" for RAID-1 verification
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 031ec030..1ef8fca5 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" + } + } } } } |