Skip to content

Commit b7ec071

Browse files
committed
Pull request project-chip#438: change chip-tool stash path
Merge in WMN_TOOLS/matter from fix-chiptool-stash to silabs_slc_1.0 Squashed commit of the following: commit 58c83f71556f190a34656c17380deb560b7d9797 Author: Yu Shu <yulina.shu@silabs.com> Date: Wed Dec 14 12:25:56 2022 -0500 change chip-tool stash path
1 parent 6b38a46 commit b7ec071

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

Jenkinsfile

+10-6
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def buildWiFiExample(name, board, wifi_radio, args, radioName, buildCustom)
446446

447447
def buildChipTool()
448448
{
449-
actionWithRetry {
449+
// actionWithRetry {
450450
node(buildFarmLabel)
451451
{
452452
def workspaceTmpDir = createWorkspaceOverlay(advanceStageMarker.getBuildStagesList(),
@@ -480,16 +480,20 @@ def buildChipTool()
480480
}
481481
}
482482
}
483-
sh 'pwd && ls -al out'
484-
stash name: 'ChipTool', includes: 'out/**/chip-tool'
485-
486483
}
484+
dir(workspaceTmpDir + createWorkspaceOverlay.overlayMatterPath)
485+
{
486+
sh 'pwd '
487+
sh "ls -R ${extensionPath}/out "
488+
stash name: 'ChipTool', includes: extensionPath+'/out/**/chip-tool'
489+
}
490+
487491
deactivateWorkspaceOverlay(advanceStageMarker.getBuildStagesList(),
488492
workspaceTmpDir,
489-
'matter'+extensionPath+'/out',
493+
'matter/'+extensionPath+'/out',
490494
'-name "chip-tool"')
491495
}
492-
}
496+
//}
493497
}
494498

495499
def buildUnifyBridge()

0 commit comments

Comments
 (0)