| # Copyright (c) 2020 Project CHIP Authors |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| name: Build example - ESP32 |
| |
| on: |
| push: |
| pull_request: |
| |
| concurrency: |
| group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }} |
| cancel-in-progress: true |
| |
| jobs: |
| # TODO ESP32 https://github.com/project-chip/connectedhomeip/issues/1510 |
| esp32: |
| name: ESP32 |
| timeout-minutes: 85 |
| |
| env: |
| BUILD_TYPE: esp32 |
| GH_EVENT_PR: ${{ github.event_name == 'pull_request' && github.event.number || 0 }} |
| GH_EVENT_HASH: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} |
| GH_EVENT_BASE: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }} |
| |
| runs-on: ubuntu-latest |
| if: github.actor != 'restyled-io[bot]' |
| |
| container: |
| image: connectedhomeip/chip-build-esp32:0.5.28 |
| volumes: |
| - "/tmp/bloat_reports:/tmp/bloat_reports" |
| |
| steps: |
| - name: Checkout |
| uses: actions/checkout@v2 |
| with: |
| submodules: true |
| |
| - name: Get parent for size reports |
| run: | |
| MERGE_PARENT="$(git --no-pager log -1 --pretty=tformat:%s | sed -n -e 's/Merge [0-9a-f]\+ into //p')" |
| if test -z "${MERGE_PARENT}" || test "${GH_EVENT_PARENT}" = 0 |
| then |
| MERGE_PARENT=$GH_EVENT_BASE |
| fi |
| echo "GH_EVENT_PARENT=$MERGE_PARENT" >>$GITHUB_ENV |
| |
| - name: Bootstrap |
| timeout-minutes: 25 |
| run: scripts/build/gn_bootstrap.sh |
| - name: Uploading bootstrap logs |
| uses: actions/upload-artifact@v2 |
| if: ${{ always() }} && ${{ !env.ACT }} |
| with: |
| name: bootstrap-logs |
| path: | |
| .environment/gn_out/.ninja_log |
| .environment/pigweed-venv/*.log |
| - name: Build example All Clusters App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh all-clusters-app sdkconfig_m5stack.defaults |
| - name: Copy aside build products |
| run: | |
| mkdir -p example_binaries/$BUILD_TYPE-build |
| cp examples/all-clusters-app/esp32/build/chip-all-clusters-app.elf \ |
| example_binaries/$BUILD_TYPE-build/chip-all-clusters-app.elf |
| .environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ |
| esp32 m5stack all-clusters-app \ |
| example_binaries/$BUILD_TYPE-build/chip-all-clusters-app.elf \ |
| /tmp/bloat_reports/ |
| - name: Build example All Clusters App C3 |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh all-clusters-app sdkconfig_c3devkit.defaults |
| - name: Copy aside build products |
| run: | |
| mkdir -p example_binaries/$BUILD_TYPE-build |
| cp examples/all-clusters-app/esp32/build/chip-all-clusters-app.elf \ |
| example_binaries/$BUILD_TYPE-build/chip-all-clusters-app.elf |
| .environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ |
| esp32 c3devkit all-clusters-app \ |
| example_binaries/$BUILD_TYPE-build/chip-all-clusters-app.elf \ |
| /tmp/bloat_reports/ |
| - name: Build example Pigweed App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh pigweed-app sdkconfig.defaults |
| - name: Build example Lock App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh lock-app sdkconfig.defaults |
| - name: Build example Bridge App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh bridge-app |
| - name: Build example Persistent Storage App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh persistent-storage sdkconfig.defaults |
| - name: Build example Shell App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh shell sdkconfig.defaults |
| - name: Build example Temperature Measurement App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh temperature-measurement-app sdkconfig.optimize.defaults |
| - name: Build example IPv6 Only App |
| timeout-minutes: 10 |
| run: scripts/examples/esp_example.sh ipv6only-app sdkconfig.defaults |
| |
| - name: Uploading Size Reports |
| uses: actions/upload-artifact@v2 |
| if: ${{ !env.ACT }} |
| with: |
| name: Size,ESP32-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }} |
| path: /tmp/bloat_reports/ |