-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bouffalolab] Update CI workflow to build all BouffaloLab examples in…
… one job (#23870) * Update CI workflow to build all BouffaloLab examples in one job * Fix restyle * remove unnecessary code * Fix restyle Co-authored-by: Andrei Litvin <[email protected]>
- Loading branch information
Showing
5 changed files
with
82 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ name: Build example - BouffaloLab | |
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }} | ||
|
@@ -26,8 +27,8 @@ env: | |
CHIP_NO_LOG_TIMESTAMPS: true | ||
|
||
jobs: | ||
bl602: | ||
name: BL602 | ||
bouffalolab: | ||
name: Bouffalo Lab | ||
timeout-minutes: 90 | ||
|
||
runs-on: ubuntu-latest | ||
|
@@ -54,84 +55,68 @@ jobs: | |
env: | ||
GH_CONTEXT: ${{ toJson(github) }} | ||
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}" | ||
|
||
|
||
- name: Bootstrap | ||
timeout-minutes: 25 | ||
run: scripts/build/gn_bootstrap.sh | ||
- name: Uploading bootstrap logs | ||
uses: actions/upload-artifact@v3 | ||
if: ${{ always() && !env.ACT }} | ||
with: | ||
name: bootstrap-logs | ||
path: | | ||
.environment/gn_out/.ninja_log | ||
.environment/pigweed-venv/*.log | ||
- name: Build example BL602 Lighting App | ||
timeout-minutes: 30 | ||
run: | | ||
./scripts/run_in_build_env.sh \ | ||
"./scripts/build/build_examples.py --target bouffalolab-bl602-iot-matter-v1-light build" | ||
- name: Get Lighting size stats | ||
run: | | ||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py bl602 bl602 lighting-app \ | ||
out/bouffalolab-bl602-iot-matter-v1-light/chip-bl602-lighting-example.out /tmp/bloat_reports/ | ||
- name: Build example BL602 Lighting App with RPCs | ||
timeout-minutes: 30 | ||
"./scripts/build/build_examples.py \ | ||
--target bouffalolab-bl602-iot-matter-v1-light \ | ||
--target bouffalolab-bl602-iot-matter-v1-light-115200-rpc \ | ||
build \ | ||
--copy-artifacts-to out/artifacts \ | ||
" | ||
- name: Prepare some bloat report from the previous builds | ||
run: | | ||
./scripts/run_in_build_env.sh \ | ||
"./scripts/build/build_examples.py --target bouffalolab-bl602-iot-matter-v1-light-115200-rpc build" | ||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py bl602 bl602+rpc lighting-app \ | ||
out/bouffalolab-bl602-iot-matter-v1-light-115200-rpc/chip-bl602-lighting-example.out /tmp/bloat_reports/ | ||
- name: Uploading Size Reports | ||
uses: actions/upload-artifact@v3 | ||
if: ${{ !env.ACT }} | ||
with: | ||
name: Size,BL602-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} | ||
path: | | ||
/tmp/bloat_reports/ | ||
bl702: | ||
name: BL702 | ||
timeout-minutes: 90 | ||
|
||
runs-on: ubuntu-latest | ||
if: github.actor != 'restyled-io[bot]' | ||
|
||
container: | ||
image: connectedhomeip/chip-build-bouffalolab:0.6.18 | ||
volumes: | ||
- "/tmp/bloat_reports:/tmp/bloat_reports" | ||
steps: | ||
- uses: Wandalen/[email protected] | ||
name: Checkout | ||
with: | ||
action: actions/checkout@v3 | ||
with: | | ||
token: ${{ github.token }} | ||
attempt_limit: 3 | ||
attempt_delay: 2000 | ||
- name: Checkout submodules | ||
run: scripts/checkout_submodules.py --shallow --platform bouffalolab --recursive | ||
|
||
- name: Set up environment for size reports | ||
if: ${{ !env.ACT }} | ||
env: | ||
GH_CONTEXT: ${{ toJson(github) }} | ||
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}" | ||
|
||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ | ||
bl602 bl602 lighting-app \ | ||
out/artifacts/bouffalolab-bl602-iot-matter-v1-light/chip-bl602-lighting-example.out \ | ||
/tmp/bloat_reports/ | ||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ | ||
bl602 bl602+rpc lighting-app \ | ||
out/artifacts/bouffalolab-bl602-iot-matter-v1-light-115200-rpc/chip-bl602-lighting-example.out \ | ||
/tmp/bloat_reports/ | ||
- name: Clean out build output | ||
run: rm -rf ./out | ||
|
||
- name: Build example BL702 Lighting App | ||
timeout-minutes: 30 | ||
run: | | ||
./scripts/run_in_build_env.sh \ | ||
"./scripts/build/build_examples.py --target bouffalolab-xt-zb6-devkit-light build" | ||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py bl702 bl702 lighting-app \ | ||
out/bouffalolab-xt-zb6-devkit-light/chip-bl702-lighting-example.out /tmp/bloat_reports/ | ||
- name: Build example BL702 Lighting App with RPCs | ||
timeout-minutes: 30 | ||
"./scripts/build/build_examples.py \ | ||
--target bouffalolab-xt-zb6-devkit-light \ | ||
--target bouffalolab-xt-zb6-devkit-light-115200-rpc \ | ||
build \ | ||
--copy-artifacts-to out/artifacts \ | ||
" | ||
- name: Prepare some bloat report from the previous builds | ||
run: | | ||
./scripts/run_in_build_env.sh \ | ||
"./scripts/build/build_examples.py --target bouffalolab-xt-zb6-devkit-light-115200-rpc build" | ||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py bl702 bl702+rpc lighting-app \ | ||
out/bouffalolab-xt-zb6-devkit-light-115200-rpc/chip-bl702-lighting-example.out /tmp/bloat_reports/ | ||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ | ||
bl702 bl702 lighting-app \ | ||
out/artifacts/bouffalolab-xt-zb6-devkit-light/chip-bl702-lighting-example.out \ | ||
/tmp/bloat_reports/ | ||
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ | ||
bl702 bl702+rpc lighting-app \ | ||
out/artifacts/bouffalolab-xt-zb6-devkit-light-115200-rpc/chip-bl702-lighting-example.out \ | ||
/tmp/bloat_reports/ | ||
- name: Clean out build output | ||
run: rm -rf ./out | ||
|
||
- name: Uploading Size Reports | ||
uses: actions/upload-artifact@v3 | ||
if: ${{ !env.ACT }} | ||
with: | ||
name: Size,BL702-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} | ||
name: Size,BouffaloLab-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} | ||
path: | | ||
/tmp/bloat_reports/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters