Skip to content

Commit 0dff22c

Browse files
WIP
1 parent af8b157 commit 0dff22c

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/silabs-builds.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"lighting-app": [
3+
{
4+
"boards": ["BRD4187C"],
5+
"arguments": []
6+
}
7+
]
8+
}

.github/workflows/lighting-app.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build Lighting App
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
- "release_*"
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
container:
17+
image: ghcr.io/project-chip/chip-build-efr32:90
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
23+
- name: Checkout submodules & Bootstrap
24+
uses: ./.github/actions/checkout-submodules-and-bootstrap
25+
with:
26+
platform: silabs_docker

0 commit comments

Comments
 (0)