Skip to content

Commit

Permalink
Use docker flags for unstashing
Browse files Browse the repository at this point in the history
Signed-off-by: Travis F. Collins <[email protected]>
  • Loading branch information
tfcollins committed Nov 12, 2024
1 parent 683b509 commit 87962d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ for (int i=0; i < demoNames.size(); i++) {
stage(demo) {
echo "Node: ${env.NODE_NAME}"
echo "Demo: ${env.DEMO}"
local_unstash('builtSources')
local_unstash('builtSources', inDocker=false)
sh 'make -C ./CI/scripts test_targeting_demos'
junit testResults: 'test/*.xml', allowEmptyResults: true
archiveArtifacts artifacts: 'test/*', followSymlinks: false, allowEmptyArchive: true
Expand All @@ -117,7 +117,7 @@ parallel deployments
node('baremetal') {
stage("NonHW Tests") {
stage("NonHW") {
local_unstash('builtSources')
local_unstash('builtSources', inDocker=false)
sh 'make -C ./CI/scripts run_NonHWTests'
}
}
Expand Down Expand Up @@ -160,7 +160,7 @@ cstage("Hardware Streaming Tests", "", flags) {

node('baremetal || lab_b5') {
cstage('Deploy Development', "", flags) {
local_unstash("builtSources")
local_unstash("builtSources", inDocker=false)
uploadArtifactory('TransceiverToolbox','*.mltbx')
}
}
Expand Down

0 comments on commit 87962d5

Please sign in to comment.