Skip to content

Commit 14cd8d4

Browse files
Shadi-Silabsjmartinez-silabs
authored andcommitted
Pull request project-chip#110: [MATTER-752] Remove concatentaion of -app
Merge in WMN_TOOLS/matter from fix/MATTER-752 to silabs Squashed commit of the following: commit f07fd1cf1c1996f2636302115edc357156c11eef Author: Shadi Makdissi <[email protected]> Date: Fri Sep 16 14:34:12 2022 -0400 update following Yulina's comment commit 3cb686e43424b6c18d4101d19ca15ffdee0116a5 Author: Shadi Makdissi <[email protected]> Date: Fri Sep 16 14:14:01 2022 -0400 remove concatentaion of -app
1 parent 86de329 commit 14cd8d4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Jenkinsfile

+12-12
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def openThreadTestSuite(devicegoup, name, board)
432432
dir('matter')
433433
{
434434
sh 'pwd '
435-
stashFolder = 'OpenThreadExamples-'+name+"-app-"+board
435+
stashFolder = 'OpenThreadExamples-'+name+'-'+board
436436
echo "unstash folder: "+stashFolder
437437
unstash stashFolder
438438
unstash 'ChipTool'
@@ -452,7 +452,7 @@ def openThreadTestSuite(devicegoup, name, board)
452452
}
453453

454454

455-
def ci_path="${WORKSPACE}/matter/out/CSA/"+name+"-app/OpenThread/standard/"
455+
def ci_path="${WORKSPACE}/matter/out/CSA/"+name+"/OpenThread/standard/"
456456
echo "ci_path: "+ci_path
457457

458458
withEnv([ 'TEST_SCRIPT_REPO=matter-scripts',
@@ -532,7 +532,7 @@ def utfThreadTestSuite(devicegoup,testbed_name,app_name, matter_type , board, te
532532
dir('matter')
533533
{
534534
sh 'pwd '
535-
stashFolder = 'OpenThreadExamples-'+app_name+"-app-"+board
535+
stashFolder = 'OpenThreadExamples-'+app_name+'-'+board
536536
echo "unstash folder: "+stashFolder
537537
unstash stashFolder
538538
unstash 'ChipTool'
@@ -547,7 +547,7 @@ def utfThreadTestSuite(devicegoup,testbed_name,app_name, matter_type , board, te
547547
echo $chiptoolPath
548548
'''
549549

550-
sh "cp out/CSA/${app_name}-app/OpenThread/standard/${board}/*.s37 ../manifest"
550+
sh "cp out/CSA/${app_name}/OpenThread/standard/${board}/*.s37 ../manifest"
551551

552552
}
553553

@@ -641,7 +641,7 @@ def utfWiFiTestSuite(devicegoup, testbed_name, app_name, matter_type, board, wif
641641

642642
dir('matter')
643643
{
644-
stashFolder = 'WiFiExamples-'+app_name+'-app-'+board+'-'+wifi_module
644+
stashFolder = 'WiFiExamples-'+app_name+'-'+board+'-'+wifi_module
645645
unstash stashFolder
646646
unstash 'ChipTool'
647647
unstash 'BootLoader'
@@ -655,7 +655,7 @@ def utfWiFiTestSuite(devicegoup, testbed_name, app_name, matter_type, board, wif
655655
echo $chiptoolPath
656656
'''
657657

658-
sh "cp out/${app_name}-app_wifi_${wifi_module}/${board}/*.s37 ../manifest"
658+
sh "cp out/${app_name}_wifi_${wifi_module}/${board}/*.s37 ../manifest"
659659

660660
}
661661

@@ -894,14 +894,14 @@ def pipeline()
894894
//even openthread test in parallel, they actually run in sequence as they are using same raspi
895895
def parallelNodes = [:]
896896

897-
parallelNodes['Junit lighting BRD4161A'] = { this.openThreadTestSuite('qa-yinyi-1','lighting','BRD4161A') }
898-
// parallelNodes['Junit lighting BRD4187A'] = { this.openThreadTestSuite('qa-yinyi-1','lighting','BRD4187A') }
897+
parallelNodes['Junit lighting BRD4161A'] = { this.openThreadTestSuite('qa-yinyi-1','lighting-app','BRD4161A') }
898+
// parallelNodes['Junit lighting BRD4187A'] = { this.openThreadTestSuite('qa-yinyi-1','lighting-app','BRD4187A') }
899899

900-
parallelNodes['lighting Thread BRD4187C'] = { this.utfThreadTestSuite('utf_matter_thread','matter_thread','lighting','thread','BRD4187C','',"/manifest-4187-thread","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence_thread.yaml") }
901-
parallelNodes['lighting Thread BRD4161A'] = { this.utfThreadTestSuite('utf_matter_thread','matter_thread','lighting','thread','BRD4161A','',"/manifest-4161-thread","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence_thread_4161.yaml") }
902-
parallelNodes['lighting Thread BRD2703A'] = { this.utfThreadTestSuite('utf_matter_thread_2','matter_thread_2','lighting','thread','BRD2703A','',"/manifest-2703-thread","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence_thread.yaml") }
900+
parallelNodes['lighting Thread BRD4187C'] = { this.utfThreadTestSuite('utf_matter_thread','matter_thread','lighting-app','thread','BRD4187C','',"/manifest-4187-thread","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence_thread.yaml") }
901+
parallelNodes['lighting Thread BRD4161A'] = { this.utfThreadTestSuite('utf_matter_thread','matter_thread','lighting-app','thread','BRD4161A','',"/manifest-4161-thread","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence_thread_4161.yaml") }
902+
parallelNodes['lighting Thread BRD2703A'] = { this.utfThreadTestSuite('utf_matter_thread_2','matter_thread_2','lighting-app','thread','BRD2703A','',"/manifest-2703-thread","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence_thread.yaml") }
903903

904-
parallelNodes['lighting rs9116 BRD4161A'] = { this.utfWiFiTestSuite('utf_matter_ci','INT0014944','lighting','wifi','BRD4161A','rs911x','',"/manifest","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence.yaml") }
904+
parallelNodes['lighting rs9116 BRD4161A'] = { this.utfWiFiTestSuite('utf_matter_ci','INT0014944','lighting-app','wifi','BRD4161A','rs911x','',"/manifest","--tmconfig tests/.sequence_manager/test_execution_definitions/matterci_test_sequence.yaml") }
905905

906906
parallelNodes.failFast = false
907907
parallel parallelNodes

0 commit comments

Comments
 (0)