Skip to content

Commit 9ddbcec

Browse files
committed
tools/jenkins: Added support for esp32s3 build in jenkins
1 parent 3044b5b commit 9ddbcec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/jenkins/Jenkinsfile.esp_matter.firmware

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pipeline {
2020
}
2121
parameters {
2222
choice(name: 'product', choices: "${product_choices}", description: 'Product choices')
23-
choice(name: 'chip', choices:['esp32c3', 'esp32', 'esp32h2', 'esp32c2','esp32c6'], description: 'Chips')
23+
choice(name: 'chip', choices:['esp32c3', 'esp32', 'esp32h2', 'esp32c2','esp32c6','esp32s3'], description: 'Chips')
2424
string(name: 'esp_matter_branch', defaultValue: 'main', description: 'Branch to be used for esp-matter')
2525
}
2626
environment {

tools/jenkins/esp_matter.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def artifacts_save() {
157157
cd ${REPOS_PATH}
158158
cp build_details.txt ${PACKAGE_NAME}/
159159
160-
mkdir ${WORKSPACE}/artifacts
160+
mkdir -p ${WORKSPACE}/artifacts
161161
cp build_details.txt ${WORKSPACE}/artifacts/
162162
tar -zcvf ${WORKSPACE}/artifacts/${PACKAGE_NAME}.tar.gz ${PACKAGE_NAME}
163163
'''

0 commit comments

Comments
 (0)