Merge pull request #188 from mbanth/feature/rename_legacy_test_dir

Move xmostest tests
This commit is contained in:
Michael Banther
2021-05-19 14:14:45 +01:00
committed by GitHub
19 changed files with 8 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ lib_xua Change Log
----- -----
* CHANGED: Move HID descriptors to ease maintenance * CHANGED: Move HID descriptors to ease maintenance
* CHANGED: Move legacy tests to separate directory
1.2.0 1.2.0
----- -----

7
Jenkinsfile vendored
View File

@@ -28,8 +28,13 @@ pipeline {
} }
} }
stage('Tests') { stage('Tests') {
failFast true
parallel {
stage('Legacy tests') {
steps { steps {
runXmostest("${REPO}", 'tests') runXmostest("${REPO}", 'legacy_tests')
}
}
} }
} }
stage('xCORE builds') { stage('xCORE builds') {