From 9ddbcec739e1c711a06d5195f3f298adfd46117b Mon Sep 17 00:00:00 2001 From: shripad621git Date: Mon, 10 Feb 2025 14:46:01 +0530 Subject: [PATCH] tools/jenkins: Added support for esp32s3 build in jenkins --- tools/jenkins/Jenkinsfile.esp_matter.firmware | 2 +- tools/jenkins/esp_matter.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/jenkins/Jenkinsfile.esp_matter.firmware b/tools/jenkins/Jenkinsfile.esp_matter.firmware index 617724716..0700eee33 100644 --- a/tools/jenkins/Jenkinsfile.esp_matter.firmware +++ b/tools/jenkins/Jenkinsfile.esp_matter.firmware @@ -20,7 +20,7 @@ pipeline { } parameters { choice(name: 'product', choices: "${product_choices}", description: 'Product choices') - choice(name: 'chip', choices:['esp32c3', 'esp32', 'esp32h2', 'esp32c2','esp32c6'], description: 'Chips') + choice(name: 'chip', choices:['esp32c3', 'esp32', 'esp32h2', 'esp32c2','esp32c6','esp32s3'], description: 'Chips') string(name: 'esp_matter_branch', defaultValue: 'main', description: 'Branch to be used for esp-matter') } environment { diff --git a/tools/jenkins/esp_matter.groovy b/tools/jenkins/esp_matter.groovy index 641eb5be5..340ea8c5d 100644 --- a/tools/jenkins/esp_matter.groovy +++ b/tools/jenkins/esp_matter.groovy @@ -157,7 +157,7 @@ def artifacts_save() { cd ${REPOS_PATH} cp build_details.txt ${PACKAGE_NAME}/ - mkdir ${WORKSPACE}/artifacts + mkdir -p ${WORKSPACE}/artifacts cp build_details.txt ${WORKSPACE}/artifacts/ tar -zcvf ${WORKSPACE}/artifacts/${PACKAGE_NAME}.tar.gz ${PACKAGE_NAME} '''