Skip to content

Commit

Permalink
Use tools version 15.3.0 in Jenkins tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xluciano committed Sep 26, 2024
1 parent 196eda3 commit 26b19e0
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ pipeline {
parameters {
string(
name: 'TOOLS_VERSION',
// Dropped back from 15.3.0 on 2nd August 2024 because of http://bugzilla.xmos.local/show_bug.cgi?id=18895
defaultValue: '15.2.1',
defaultValue: '15.3.0',
description: 'The XTC tools version'
)
}
Expand Down Expand Up @@ -71,7 +70,7 @@ pipeline {
cleanup {
xcoreCleanSandbox()
}
}
}
} // Build Docs

stage('Build and Test') {
Expand Down Expand Up @@ -144,20 +143,23 @@ pipeline {
// }
// }
//}
stage('Run RTOS Drivers HIL test') {
steps {
withTools(params.TOOLS_VERSION) {
withVenv {
script {
withXTAG(["$RTOS_TEST_RIG_TARGET"]) { adapterIDs ->
sh "test/rtos_drivers/hil/check_drivers_hil.sh " + adapterIDs[0]
}
sh "pytest test/rtos_drivers/hil"
}
}
}
}
}
// TODO: Disabled till http://bugzilla.xmos.local/show_bug.cgi?id=18895 is fixed.
// This problem occurred in the USB tests if the HIL tests were run first.
// Tools 15.3.1 should include the fix.
//stage('Run RTOS Drivers HIL test') {
// steps {
// withTools(params.TOOLS_VERSION) {
// withVenv {
// script {
// withXTAG(["$RTOS_TEST_RIG_TARGET"]) { adapterIDs ->
// sh "test/rtos_drivers/hil/check_drivers_hil.sh " + adapterIDs[0]
// }
// sh "pytest test/rtos_drivers/hil"
// }
// }
// }
// }
//}
stage('Run RTOS Drivers HIL_Add test') {
steps {
withTools(params.TOOLS_VERSION) {
Expand Down

0 comments on commit 26b19e0

Please sign in to comment.