| # Copyright (c) 2021 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 - Mbed OS |
| |
| 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 }} |
| cancel-in-progress: true |
| |
| jobs: |
| mbedos: |
| name: Mbed OS examples building |
| timeout-minutes: 60 |
| |
| env: |
| BUILD_TYPE: mbedos |
| APP_PROFILE: release |
| APP_TARGET: CY8CPROTO_062_4343W |
| 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_PARENT: ${{ 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-mbed-os:0.5.13 |
| volumes: |
| - "/tmp/bloat_reports:/tmp/bloat_reports" |
| - "/tmp/output_binaries:/tmp/output_binaries" |
| |
| steps: |
| - name: Checkout |
| uses: actions/checkout@v2 |
| with: |
| submodules: true |
| |
| - name: Bootstrap |
| timeout-minutes: 10 |
| 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 lock-app example |
| timeout-minutes: 10 |
| run: | |
| scripts/examples/mbed_example.sh -a=lock-app -b=$APP_TARGET -p=$APP_PROFILE |
| .environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ |
| mbed $APP_TARGET+$APP_PROFILE lock-app \ |
| examples/lock-app/mbed/build-CY8CPROTO_062_4343W/release/chip-mbed-lock-app-example.elf \ |
| /tmp/bloat_reports/ |
| |
| - name: Build lighting-app example |
| timeout-minutes: 10 |
| run: | |
| scripts/examples/mbed_example.sh -a=lighting-app -b=$APP_TARGET -p=$APP_PROFILE |
| .environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ |
| mbed $APP_TARGET+$APP_PROFILE lighting-app \ |
| examples/lighting-app/mbed/build-CY8CPROTO_062_4343W/release/chip-mbed-lighting-app-example.elf \ |
| /tmp/bloat_reports/ |
| |
| - name: Build unit tests |
| timeout-minutes: 10 |
| run: scripts/tests/mbed/mbed_unit_tests.sh -b=$APP_TARGET -p=$APP_PROFILE |
| |
| - name: Copy aside build products |
| run: | |
| mkdir -p /tmp/output_binaries/$BUILD_TYPE-build |
| cp examples/lock-app/mbed/build-$APP_TARGET/$APP_PROFILE/chip-mbed-lock-app-example.hex \ |
| /tmp/output_binaries/$BUILD_TYPE-build/lock-app-$APP_TARGET-$APP_PROFILE.hex |
| cp examples/lighting-app/mbed/build-$APP_TARGET/$APP_PROFILE/chip-mbed-lighting-app-example.hex \ |
| /tmp/output_binaries/$BUILD_TYPE-build/lighting-app-$APP_TARGET-$APP_PROFILE.hex |
| |
| - name: Binary artifacts suffix |
| id: outsuffix |
| uses: haya14busa/action-cond@v1.0.0 |
| if: ${{ !env.ACT }} |
| with: |
| cond: ${{ github.event.pull_request.number == '' }} |
| if_true: "${{ github.sha }}" |
| if_false: "pull-${{ github.event.pull_request.number }}" |
| |
| - name: Uploading binaries as artifacts |
| uses: actions/upload-artifact@v2 |
| if: ${{ !env.ACT }} |
| with: |
| name: |
| ${{ env.BUILD_TYPE }}-binaries-${{ env.APP_TARGET }}-${{ env.APP_PROFILE }}-build-${{ |
| steps.outsuffix.outputs.value }} |
| path: /tmp/output_binaries/${{ env.BUILD_TYPE }}-build |
| |
| - name: Uploading Size Reports |
| uses: actions/upload-artifact@v2 |
| if: ${{ !env.ACT }} |
| with: |
| name: Size,Mbed-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }} |
| path: | |
| /tmp/bloat_reports/ |