Skip to content
Open

TEST #667

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion jenkins_integration/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def pr_number = ""
def bypass_send_results_gh = ""
def build_description = ""
def commit_change_summary = ""
def source_branch_name = ""

def combineSlackSummary(String commitSummary, String extra) {
def c = commitSummary?.trim() ?: ''
Expand Down Expand Up @@ -86,6 +87,8 @@ pipeline
script {
pipelineFunctions = load 'jenkins_integration/jenkinsFunctions.groovy'
echo "pipelineFunctions loaded: ${pipelineFunctions != null}"
source_branch_name = env.CHANGE_BRANCH ?: env.BRANCH_NAME
echo "source_branch_name=${source_branch_name}"
sh 'git submodule update --init --checkout third_party/simplicity_sdk'
sh 'git submodule update --init --checkout third_party/wifi_sdk'
sisdk_build_number = sh(script: 'cat third_party/simplicity_sdk/.build-number', returnStdout: true).trim()
Expand Down Expand Up @@ -222,7 +225,7 @@ pipeline
}
stage('Upload SQA Artifacts') {
when {
expression { env.BRANCH_NAME == "main" || env.BRANCH_NAME.startsWith("release_") }
expression { env.BRANCH_NAME == "main" || env.BRANCH_NAME.startsWith("release_") || env.BRANCH_NAME.startsWith("SL_compatibility")}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change will be brough in from main branch with weekly sync https://github.com/SiliconLabsSoftware/matter_extension/pull/659/changes

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes I checked out from main and forgot to remove, was checking something else

}
steps {
script {
Expand Down
Loading