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 legacy tests to separate directory
1.2.0
-----

9
Jenkinsfile vendored
View File

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