Set up for parallel testing

This commit is contained in:
mbanth
2021-05-19 13:45:04 +01:00
parent f66ddc53eb
commit 294d3a469e

5
Jenkinsfile vendored
View File

@@ -27,11 +27,16 @@ pipeline {
xcoreLibraryChecks("${REPO}") xcoreLibraryChecks("${REPO}")
} }
} }
stage('Tests') {
failFast true
parallel {
stage('Legacy tests') { stage('Legacy tests') {
steps { steps {
runXmostest("${REPO}", 'legacy_tests') runXmostest("${REPO}", 'legacy_tests')
} }
} }
}
}
stage('xCORE builds') { stage('xCORE builds') {
steps { steps {
dir("${REPO}") { dir("${REPO}") {