Skip to content

Workflow file for this run

name: Build Lighting App
on:
push:
branches:
- main
pull_request:
branches:
- main
- "release_*"
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/project-chip/chip-build-efr32:90
strategy:
matrix:
platform: [thread, wifi]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout submodules & Bootstrap
uses: ./.github/actions/checkout-submodules-and-bootstrap
with:
platform: silabs_docker
bootstrap-log-name:
bootstrap-logs-lighting-app-${{ matrix.platform }}
- name: Build Lighting-App configurations
uses: SiliconLabsSoftware/[email protected]
with:
json-file-path:
${{ matrix.platform == 'thread' &&
'./.github/silabs-builds-thread.json' ||
'./.github/silabs-builds-wifi.json' }}
example-app: "lighting-app"
build-script: "./scripts/examples/gn_silabs_example.sh"