From c2b74c943b513ed85de62e47591ea1828e3d1d28 Mon Sep 17 00:00:00 2001 From: Rehan Rasool Date: Tue, 11 Oct 2022 21:35:26 +0000 Subject: [PATCH] Pull request #185: Enable WF200 builds Merge in WMN_TOOLS/matter from feature/enable-wf200-builds to silabs Squashed commit of the following: commit 5616ddd8ac3927287c0b511b962f9b0e769591a3 Author: Rehan Rasool Date: Tue Oct 11 15:50:46 2022 -0400 Set is_debug=false for MG12+WF200, otherwise it does not fit commit 9933bf8c79cd0d4d63707fa2007f647f021ca4f5 Author: Rehan Rasool Date: Tue Oct 11 11:59:47 2022 -0400 Enable WF200 builds --- Jenkinsfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0fd6601eb014ba..6f3f310aa510aa 100755 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -227,7 +227,11 @@ def buildWiFiExample(name, board, wifi_radio) { try { // TODO remove enable_openthread_cli once master is updated. - sh "./scripts/examples/gn_efr32_example.sh examples/${name}/efr32/ out/${name}_wifi_${wifi_radio} ${board} \" disable_lcd=true use_external_flash=false enable_openthread_cli=true\" --wifi ${wifi_radio}" + if (board == "BRD4161A" && wifi_radio == "wf200") { // set is_debug=false, otherwise it does not fit + sh "./scripts/examples/gn_efr32_example.sh examples/${name}/efr32/ out/${name}_wifi_${wifi_radio} ${board} \" is_debug=false disable_lcd=true use_external_flash=false enable_openthread_cli=true\" --wifi ${wifi_radio}" + } else { + sh "./scripts/examples/gn_efr32_example.sh examples/${name}/efr32/ out/${name}_wifi_${wifi_radio} ${board} \" disable_lcd=true use_external_flash=false enable_openthread_cli=true\" --wifi ${wifi_radio}" + } } catch (e) { deactivateWorkspaceOverlay(advanceStageMarker.getBuildStagesList(), workspaceTmpDir, @@ -890,9 +894,7 @@ def pipeline() def wifiApps = [ "lighting-app", "lock-app", "thermostat"] - //TODO FIX ME Enable WF200 once silabs branch is updated with CSA for MG24 and WF200 support - def wifiRCP = ["rs911x"] - // def wifiRCP = ["rs911x", "wf200"] + def wifiRCP = ["rs911x", "wf200"] wifiApps.each { appName -> wifiBoards.each { board ->