Skip to content

Commit e0f8709

Browse files
Update to JenkinsfileCron file to address CI migration
1 parent 0110b2a commit e0f8709

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

JenkinsfileCron

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@ for (int i=0; i < boardNames.size(); i++) {
6262
junit testResults: 'test/*.xml', allowEmptyResults: true
6363
archiveArtifacts artifacts: 'test/*', followSymlinks: false, allowEmptyArchive: true
6464
}
65-
if (!board.contains("pluto") && !board.contains("vcu118")) {
66-
stage("Upload BOOT.BINs") {
67-
sh 'rm -rf ' + bbfolder + ' || true'
68-
sh 'mkdir ' + bbfolder
69-
uploadArtifactory('HighSpeedConverterToolbox',bbfolder+'/*.BIN*')
70-
}
71-
}
65+
if (!board.contains("pluto") && !board.contains("vcu118")) {
66+
stage("Upload BOOT.BINs") {
67+
sh 'rm -rf ' + bbfolder + ' || true'
68+
sh 'mkdir ' + bbfolder
69+
sh 'mv test/*.BIN '+bbfolder+'/'
70+
uploadArtifactory('HighSpeedConverterToolbox', bbfolder+'/*.BIN*')
71+
}
72+
}
7273
}
7374
finally {
7475
cleanWs();
@@ -83,10 +84,10 @@ parallel deployments
8384

8485

8586
/////////////////////////////////////////////////////
86-
// node {
87-
// stage("Trigger Harness") {
88-
// echo "Node: ${env.NODE_NAME}"
89-
// unstash "builtSources"
90-
// triggerHWHarness("HighSpeedConverterToolbox")
91-
// }
92-
// }
87+
node {
88+
stage("Trigger Harness") {
89+
echo "Node: ${env.NODE_NAME}"
90+
unstash "builtSources"
91+
triggerHWHarness("HighSpeedConverterToolbox")
92+
}
93+
}

0 commit comments

Comments
 (0)