Skip to content

Commit 33991c5

Browse files
Reduced the ESP32 CI tests to be run on CI build (project-chip#35931)
1 parent 1ed1dca commit 33991c5

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/examples-esp32.yaml

+9-6
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,11 @@ jobs:
105105
example_binaries/esp32-build/chip-all-clusters-app.elf \
106106
/tmp/bloat_reports/
107107
108-
- name: Build example Pigweed App
109-
run: scripts/examples/esp_example.sh pigweed-app sdkconfig.defaults
110-
111108
- name: Build example Lighting App (Target:ESP32H2)
112109
run: scripts/examples/esp_example.sh lighting-app sdkconfig.defaults.esp32h2 esp32h2
113110

114-
- name: Build example Lock App (Target:ESP32C6)
115-
run: scripts/examples/esp_example.sh lock-app sdkconfig.defaults.esp32c6 esp32c6
111+
- name: Build example Lighting App (Target:ESP32C6)
112+
run: scripts/examples/esp_example.sh lighting-app sdkconfig.defaults.esp32c6 esp32c6
116113

117114
- name: Uploading Size Reports
118115
uses: ./.github/actions/upload-size-reports
@@ -124,7 +121,7 @@ jobs:
124121
name: ESP32_1
125122

126123
runs-on: ubuntu-latest
127-
if: github.actor != 'restyled-io[bot]'
124+
if: github.actor != 'restyled-io[bot]' && github.repository_owner == 'espressif'
128125

129126
container:
130127
image: ghcr.io/project-chip/chip-build-esp32:81
@@ -168,3 +165,9 @@ jobs:
168165

169166
- name: Build example LIT ICD App (Target:ESP32H2)
170167
run: scripts/examples/esp_example.sh lit-icd-app sdkconfig.defaults esp32h2
168+
169+
- name: Build example Pigweed App
170+
run: scripts/examples/esp_example.sh pigweed-app sdkconfig.defaults
171+
172+
- name: Build example Lock App (Target:ESP32C6)
173+
run: scripts/examples/esp_example.sh lock-app sdkconfig.defaults.esp32c6 esp32c6

.github/workflows/qemu.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
BUILD_TYPE: esp32-qemu
3939

4040
runs-on: ubuntu-latest
41-
if: github.actor != 'restyled-io[bot]'
41+
if: github.actor != 'restyled-io[bot]' && github.repository_owner == 'espressif'
4242

4343
container:
4444
image: ghcr.io/project-chip/chip-build-esp32-qemu:81

examples/lighting-app/esp32/sdkconfig.defaults.esp32c6

+4
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,7 @@ CONFIG_ENABLE_CHIP_SHELL=y
6565

6666
# Enable HKDF in mbedtls
6767
CONFIG_MBEDTLS_HKDF_C=y
68+
69+
# Serial Flasher config
70+
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
71+
CONFIG_ESPTOOLPY_FLASHSIZE="4MB"

0 commit comments

Comments
 (0)