Skip to content

Commit 48b60a7

Browse files
committed
Merge branch 'gh_component_upload_workflow' into 'main'
gh-actions: use newer action versions don't run upload component workflow in forks See merge request app-frameworks/esp-matter!711
2 parents f3b6bf7 + 9a72f4f commit 48b60a7

File tree

5 files changed

+132
-24
lines changed

5 files changed

+132
-24
lines changed

.github/workflows/docker-image.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,18 @@ jobs:
6363
# The following steps are the standard boilerplate from
6464
# https://github.com/marketplace/actions/build-and-push-docker-images
6565
- name: Checkout
66-
uses: actions/checkout@v3
66+
uses: actions/checkout@v4
6767
- name: Login to Docker Hub
68-
uses: docker/login-action@v2
68+
uses: docker/login-action@v3
6969
with:
7070
username: ${{ secrets.DOCKER_USER }}
7171
password: ${{ secrets.DOCKER_PASSWORD }}
7272
- name: Set up QEMU for multiarch builds
73-
uses: docker/setup-qemu-action@v2
73+
uses: docker/setup-qemu-action@v3
7474
- name: Set up Docker Buildx
75-
uses: docker/setup-buildx-action@v2
75+
uses: docker/setup-buildx-action@v3
7676
- name: Build and push
77-
uses: docker/build-push-action@v3
77+
uses: docker/build-push-action@v5
7878
with:
7979
context: tools/docker
8080
file: tools/docker/matter-builds

.github/workflows/pages.yml

+110-16
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ concurrency:
3737
cancel-in-progress: true
3838

3939
jobs:
40-
Build:
40+
Build-Matter:
4141
# Disable the job in forks
4242
if: ${{ github.repository_owner == 'espressif' && (github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success') }}
4343

@@ -46,33 +46,118 @@ jobs:
4646
image: espressif/esp-matter:latest
4747
strategy:
4848
matrix:
49-
build-dir: ['examples/light', 'examples/light_switch']
50-
targets: ['esp32', 'esp32c3', 'esp32c6', 'esp32h2']
49+
targets:
50+
- {example: light, target: esp32, prefix: wifi}
51+
- {example: light, target: esp32c3, prefix: wifi}
52+
- {example: light, target: esp32c6, prefix: wifi}
53+
- {example: light, target: esp32c6, prefix: thread, sdkconfig: sdkconfig.defaults.c6_thread}
54+
- {example: light, target: esp32h2, prefix: thread}
55+
- {example: light_switch, target: esp32c3, prefix: wifi}
5156

5257
steps:
5358
- run: mkdir -p images
5459
- name: build application
5560
run: |
5661
. $IDF_PATH/export.sh
5762
. $ESP_MATTER_PATH/export.sh
58-
cd $ESP_MATTER_PATH/${{matrix.build-dir}}
59-
idf.py set-target ${{matrix.targets}} build
63+
cd $ESP_MATTER_PATH/examples/${{ matrix.targets.example }}
64+
65+
SDK_CFG="sdkconfig.defaults"
66+
if [ "${{ matrix.targets.sdkconfig }}" != "" ]; then
67+
# sdkconfig.defaults.esp32c6 contains the configuration for wifi
68+
# For now its a workaround for not including wifi configs in C6's final sdkconfig
69+
# we can restructure the sdkconfig for c6_wifi and c6_thread and re-visit this
70+
# https://docs.espressif.com/projects/esp-idf/en/v5.2.1/esp32c6/api-guides/build-system.html#custom-sdkconfig-defaults
71+
# Please check the above link for sequece of application of configuration
72+
rm -f sdkconfig.defaults.${{ matrix.targets.target }}
73+
74+
SDK_CFG="$SDK_CFG;${{ matrix.targets.sdkconfig }}"
75+
elif [ -f sdkconfig.defaults.${{ matrix.targets.target }} ]; then
76+
SDK_CFG="$SDK_CFG;sdkconfig.defaults.${{ matrix.targets.target }}"
77+
fi
78+
79+
idf.py -D SDKCONFIG_DEFAULTS="$SDK_CFG" set-target ${{ matrix.targets.target }} build
6080
cd build
81+
6182
TARGET_CHIP=`cat project_description.json | python3 -c 'import sys,json; print(json.load(sys.stdin)["target"])'`
6283
APP_BIN=`cat project_description.json | python3 -c 'import sys,json; print(json.load(sys.stdin)["app_bin"])'`
63-
esptool.py --chip $TARGET_CHIP merge_bin -o "$GITHUB_WORKSPACE/images/$TARGET_CHIP"_"$APP_BIN" `cat flash_args | tr '\n' '\ '`
84+
OUT_BIN="$GITHUB_WORKSPACE/images/$TARGET_CHIP"_${{ matrix.targets.prefix }}_"$APP_BIN"
85+
esptool.py --chip $TARGET_CHIP merge_bin -o $OUT_BIN `cat flash_args | tr '\n' '\ '`
86+
87+
# record the esp-idf and esp-matter commit
88+
idf_rev=`git -C $IDF_PATH rev-parse --short HEAD`
89+
mtr_rev=`git -C $ESP_MATTER_PATH rev-parse --short HEAD`
90+
chip_rev=`git -C $ESP_MATTER_PATH/connectedhomeip/connectedhomeip rev-parse --short HEAD`
91+
echo "- esp-idf: [$idf_rev](https://github.com/espressif/esp-idf/tree/$idf_rev)" >> $GITHUB_WORKSPACE/images/.esp-idf
92+
echo "- esp-matter: [$mtr_rev](https://github.com/espressif/esp-matter/tree/$mtr_rev)" >> $GITHUB_WORKSPACE/images/.esp-matter
93+
echo "- connectedhomeip: [$chip_rev](https://github.com/project-chip/connectedhomeip/tree/$chip_rev)" >> $GITHUB_WORKSPACE/images/.chip
6494
6595
- name: Upload artifact
66-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v4
6797
with:
68-
name: build-images
98+
name: build-images-${{ matrix.targets.target }}-${{ matrix.targets.prefix }}-${{ matrix.targets.example }}
6999
path: images/
70100

101+
Build-Rainmaker:
102+
# Disable the job in forks
103+
if: ${{ github.repository_owner == 'espressif' && (github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success') }}
104+
105+
runs-on: ubuntu-latest
106+
container:
107+
image: espressif/esp-matter:latest
108+
strategy:
109+
matrix:
110+
targets:
111+
- {example: matter_light, target: esp32c3, prefix: wifi_rainmaker}
112+
113+
steps:
114+
- run: mkdir -p images
115+
116+
- uses: actions/checkout@v4
117+
with:
118+
repository: 'espressif/esp-rainmaker'
119+
submodules: 'recursive'
120+
path: 'esp-rainmaker'
121+
122+
- name: build application
123+
run: |
124+
. $IDF_PATH/export.sh
125+
. $ESP_MATTER_PATH/export.sh
126+
cd esp-rainmaker/examples/matter/${{ matrix.targets.example }}
127+
128+
SDK_CFG="sdkconfig.defaults"
129+
if [ "${{ matrix.targets.sdkconfig }}" != "" ]; then
130+
SDK_CFG="$SDK_CFG;${{ matrix.targets.sdkconfig }}"
131+
elif [ -f sdkconfig.defaults.${{ matrix.targets.target }} ]; then
132+
SDK_CFG="$SDK_CFG;sdkconfig.defaults.${{ matrix.targets.target }}"
133+
fi
134+
135+
idf.py -D SDKCONFIG_DEFAULTS="$SDK_CFG" set-target ${{ matrix.targets.target }} build
136+
cd build
137+
138+
TARGET_CHIP=`cat project_description.json | python3 -c 'import sys,json; print(json.load(sys.stdin)["target"])'`
139+
APP_BIN=`cat project_description.json | python3 -c 'import sys,json; print(json.load(sys.stdin)["app_bin"])'`
140+
OUT_BIN="$GITHUB_WORKSPACE/images/$TARGET_CHIP"_${{ matrix.targets.prefix }}_"$APP_BIN"
141+
esptool.py --chip $TARGET_CHIP merge_bin -o $OUT_BIN `cat flash_args | tr '\n' '\ '`
142+
143+
# record the esp-rainmaker commit
144+
rmaker_rev=`git rev-parse --short HEAD`
145+
echo "- esp-rainmaker: [$rmaker_rev](https://github.com/espressif/esp-rainmaker/tree/$rmaker_rev)" >> $GITHUB_WORKSPACE/images/.esp-rainmaker
146+
147+
- name: Upload artifact
148+
uses: actions/upload-artifact@v4
149+
with:
150+
name: build-images-${{ matrix.targets.target }}-${{ matrix.targets.prefix }}-${{ matrix.targets.example }}
151+
path: images/
152+
153+
71154
deploy:
72155
# Disable the job in forks
73156
if: ${{ github.repository_owner == 'espressif' }}
74157

75-
needs: Build
158+
needs:
159+
- Build-Matter
160+
- Build-Rainmaker
76161

77162
environment:
78163
name: github-pages
@@ -83,25 +168,34 @@ jobs:
83168

84169
steps:
85170
- name: Download builds
86-
uses: actions/download-artifact@v3
171+
uses: actions/download-artifact@v4
87172
with:
88-
name: build-images
173+
pattern: build-images-*
89174
path: images/
175+
merge-multiple: true
90176

91177
- name: generate launchpad config
92178
run: |
93179
cd images/
94-
ls
95-
$ESP_MATTER_PATH/tools/launchpad/generate_launchpad_config.sh
180+
$ESP_MATTER_PATH/tools/launchpad/generate_launchpad_config.sh ${{ github.repository_owner }}
181+
182+
# Put together the commit ids used when building the firmwares
183+
echo "#### Build Config" >> build_cfg.md
184+
cat .esp-idf >> build_cfg.md
185+
cat .esp-matter >> build_cfg.md
186+
cat .chip >> build_cfg.md
187+
cat .esp-rainmaker >> build_cfg.md
188+
189+
tree -H '.' -L 1 --noreport -T 'ESP Matter Launchpad Artifacts' -shi --charset utf-8 -I "index.html" -o index.html
96190
97191
- name: Setup Pages
98-
uses: actions/configure-pages@v2
192+
uses: actions/configure-pages@v4
99193

100194
- name: Upload artifact
101-
uses: actions/upload-pages-artifact@v1
195+
uses: actions/upload-pages-artifact@v3
102196
with:
103197
path: images/
104198

105199
- name: Deploy to GitHub Pages
106200
id: deployment
107-
uses: actions/deploy-pages@v1
201+
uses: actions/deploy-pages@v4

.github/workflows/upload_component.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ on:
77

88
jobs:
99
upload_components:
10+
# Disable the job in forks
11+
if: ${{ github.repository_owner == 'espressif' }}
12+
1013
runs-on: ubuntu-latest
1114
steps:
12-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1316
with:
1417
submodules: 'recursive'
1518
- name: Upload components to component service

tools/docker/matter-builds

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ FROM ghcr.io/project-chip/chip-build:${VERSION} as build
66
ARG IDF_CLONE_URL=https://github.com/espressif/esp-idf.git
77
ARG IDF_CHECKOUT_REF=v5.1
88

9+
RUN set -x \
10+
&& apt-get update \
11+
&& DEBIAN_FRONTEND=noninteractive apt-get install -fy --no-install-recommends \
12+
tree \
13+
&& apt-get clean \
14+
&& rm -rf /var/lib/apt/lists/ \
15+
&& : # last line
16+
917
RUN set -x \
1018
&& mkdir -p /tmp/esp-idf \
1119
&& cd /tmp/esp-idf \

tools/launchpad/generate_launchpad_config.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2022 Espressif Systems (Shanghai) PTE LTD
2+
# Copyright 2022-24 Espressif Systems (Shanghai) PTE LTD
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -23,11 +23,14 @@
2323
#
2424
# Above mentioned binaries are generated by the ci
2525

26+
# This script takes the github repository owner as an input
27+
REPO_OWNER=$1
2628
OUT_FILE=launchpad.toml
2729

2830
cat <<EOF >> $OUT_FILE
2931
esp_toml_version = 1.0
30-
firmware_images_url = "https://espressif.github.io/esp-matter/"
32+
firmware_images_url = "https://$REPO_OWNER.github.io/esp-matter/"
33+
config_readme_url = "https://$REPO_OWNER.github.io/esp-matter/build_cfg.md"
3134
3235
EOF
3336

0 commit comments

Comments
 (0)