Skip to content

Commit

Permalink
Pull request SiliconLabs#103: [Jenkins] Switch logic for builds
Browse files Browse the repository at this point in the history
Merge in WMN_TOOLS/matter from trim_down_mg12_boards to silabs

Squashed commit of the following:

commit 670ef652d1958253c0c74329bf8beb747881a14f
Author: jepenven-silabs <[email protected]>
Date:   Thu Sep 15 10:03:08 2022 -0400

    Switch logic for builds
  • Loading branch information
jepenven-silabs authored and mkardous-silabs committed Oct 4, 2022
1 parent 9433196 commit f47e4ba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,8 @@ def pipeline()
def parallelNodes = [:]
def openThreadBoards = [:]

if (env.BRANCH_NAME == "silabs") {
// Build only for release candidate branch
if (env.BRANCH_NAME.startsWith('RC_')) {
openThreadBoards = ["BRD4161A", "BRD4162A", "BRD4163A", "BRD4164A", "BRD4166A", "BRD4186C", "BRD4187C", "BRD2703A"]
} else {
openThreadBoards = ["BRD4161A", "BRD4166A", "BRD4187C", "BRD2703A" ]
Expand All @@ -813,7 +814,8 @@ def pipeline()
def parallelNodes = [:]
def wifiBoards = [:]

if (env.BRANCH_NAME == "silabs") {
// Build only for release candidate branch
if (env.BRANCH_NAME.startsWith('RC_')) {
wifiBoards = ["BRD4161A", "BRD4186C", "BRD4187C"]
} else {
wifiBoards = ["BRD4161A", "BRD4186C"]
Expand Down

0 comments on commit f47e4ba

Please sign in to comment.