[Camera] Re-order Init of Clusters to avoid seg fault on startup (#72… #112
This file contains hidden or 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
| # Copyright (c) 2026 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 - Silabs Zephyr | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - "v*-branch" | |
| pull_request: | |
| merge_group: | |
| 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 | |
| env: | |
| CHIP_LOG_TIMESTAMPS: false | |
| jobs: | |
| silabs: | |
| name: Silabs Zephyr | |
| runs-on: ubuntu-latest | |
| if: github.actor != 'restyled-io[bot]' | |
| container: | |
| image: ghcr.io/project-chip/chip-build-silabs-zephyr:202 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Checkout submodules & Bootstrap | |
| uses: ./.github/actions/checkout-submodules-and-bootstrap | |
| with: | |
| platform: silabs_docker | |
| - name: Build SiWx917 Zephyr Lighting App | |
| run: | | |
| cd ${GITHUB_WORKSPACE} && ./scripts/run_in_build_env.sh \ | |
| "cd /opt/silabs/zephyr-silabs \ | |
| && west build -b siwx917_rb4338a -p always ${GITHUB_WORKSPACE}/examples/lighting-app/silabs/zephyr" | |
| - name: Build EFR32xG24 Zephyr Lighting App | |
| run: | | |
| cd ${GITHUB_WORKSPACE} && ./scripts/run_in_build_env.sh \ | |
| "cd /opt/silabs/zephyr-silabs \ | |
| && west build -b xg24_rb4187c -p always ${GITHUB_WORKSPACE}/examples/lighting-app/silabs/zephyr" | |
| - name: Notify Slack on Failure | |
| if: failure() | |
| uses: ./.github/actions/notify-slack-failure | |
| with: | |
| slack-webhook: ${{ secrets.SWTT_SLACK_WEBHOOK }} |