summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-12-09 22:40:58 +0100
committerChristian Poessinger <christian@poessinger.com>2021-12-09 22:40:58 +0100
commitee4d89a381e6fe3c807d24b35ef870b500edc676 (patch)
tree988f92b1a0f6bd7bd42bc163359dfc82c4da1c23 /Jenkinsfile
parent205ffd67a762c4b204b8a3496862019444edf9c0 (diff)
parent4a21175243e0dc86b710cf4754834241d0cfcfd9 (diff)
downloadvyos-build-ee4d89a381e6fe3c807d24b35ef870b500edc676.tar.gz
vyos-build-ee4d89a381e6fe3c807d24b35ef870b500edc676.zip
Merge branch 'raid1-test' into current
* raid1-test: Jenkins: run "make testraid" for RAID-1 verification Testsuite: set default timeout to 60 seconds Testsuite: add new "make testraid" target for RAID-1 installation testing Testsuite: reference default user/pass from variable Makefile: add common helper to check if ISO was build before running tests Kernel: T3318: update Linux Kernel to v5.10.84
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile8
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"
+ }
+ }
}
}
}