using setup script #16
Workflow file for this run
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
name: PR Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
efr32: | |
strategy: | |
matrix: | |
# Every app builds for every board and suffix | |
app: [dishwasher-app, light-switch-app, lighting-app, lock-app, onoff-plug-app, sensor-app, window-app] | |
board: [brd4187c, brd4316a, brd4337a] | |
suffix: [thread] | |
# Build only specific combinations of app, board and suffix | |
include: | |
# Thread boards that have thermostats | |
- app: thermostat | |
board: brd4187c | |
suffix: thread | |
- app: thermostat | |
board: brd4316a | |
suffix: thread | |
# Wi-Fi NCP combos | |
- app: thermostat | |
board: brd4187c | |
suffix: 917-ncp | |
- app: thermostat | |
board: brd4187c | |
suffix: rs911x | |
- app: thermostat | |
board: brd4187c | |
suffix: wf200 | |
- app: lock-app | |
board: brd4187c | |
suffix: 917-ncp | |
- app: lock-app | |
board: brd4187c | |
suffix: rs911x | |
- app: lock-app | |
board: brd4187c | |
suffix: wf200 | |
- app: window-app | |
board: brd4187c | |
suffix: 917-ncp | |
name: ${{ matrix.app }}-${{ matrix.suffix }} ${{ matrix.board }} | |
uses: ./.github/workflows/generate-and-build.yaml | |
with: | |
app: ${{ matrix.app }} | |
board: ${{ matrix.board }} | |
suffix: ${{ matrix.suffix }} | |
family: efr32 | |
siwx917: | |
strategy: | |
matrix: | |
# Every app builds for every board and suffix | |
app: [dishwasher-app, light-switch-app, lighting-app, lock-app, onoff-plug-app, sensor-app, window-app] | |
board: [brd4338a, brd4342a] | |
suffix: [917-soc] | |
name: ${{ matrix.app }}-${{ matrix.suffix }} ${{ matrix.board }} | |
uses: ./.github/workflows/generate-and-build.yaml | |
with: | |
app: ${{ matrix.app }} | |
board: ${{ matrix.board }} | |
board_extension: ;wiseconnect3_sdk | |
suffix: ${{ matrix.suffix }} | |
family: siwx917 | |
cmp: | |
strategy: | |
matrix: | |
# Every app builds for every board and suffix | |
app: [zigbee-matter] | |
board: [brd4187c, brd4116a, brd4117a, brd4118a] | |
suffix: [light] | |
addAppComponent: [matter_zigbee_concurrent;matter, matter_zigbee_sequential;matter] | |
name: ${{ matrix.app }}-${{ matrix.suffix }} ${{ matrix.addAppComponent}} ${{ matrix.board }} | |
uses: ./.github/workflows/generate-and-build.yaml | |
with: | |
app: ${{ matrix.app }} | |
board: ${{ matrix.board }} | |
suffix: ${{ matrix.suffix }} | |
addAppComponent: ${{ matrix.addAppComponent }} | |
family: efr32 | |
copy-sources: | |
strategy: | |
matrix: | |
include: | |
- app: sensor-app | |
board: brd4187c | |
suffix: thread | |
family: efr32 | |
- app: thermostat | |
board: brd4187c | |
suffix: rs911x | |
family: efr32 | |
- app: lock-app | |
board: brd4187c | |
suffix: wf200 | |
family: efr32 | |
- app: window-app | |
board: brd4187c | |
suffix: 917-ncp | |
family: efr32 | |
- board: brd4338a | |
board_extension: ;wiseconnect3_sdk | |
app: sensor-app | |
suffix: 917-soc | |
family: siwx917 | |
name: copy-sources ${{ matrix.app }}-${{ matrix.suffix }} ${{ matrix.addAppComponent}} ${{ matrix.board }} | |
uses: ./.github/workflows/generate-and-build.yaml | |
with: | |
app: ${{ matrix.app }} | |
board: ${{ matrix.board }} | |
board_extension: ${{ matrix.board_extension }} | |
suffix: ${{ matrix.suffix }} | |
family: ${{ matrix.family }} | |
optionalSlcParams: copy-sources | |