-
Notifications
You must be signed in to change notification settings - Fork 10
37 lines (30 loc) · 1.03 KB
/
lighting-app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
- 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"