-
Notifications
You must be signed in to change notification settings - Fork 10
39 lines (31 loc) · 1.08 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
38
39
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
steps:
- name: Print GITHUB_WORKSPACE
run: echo "GITHUB_WORKSPACE is $GITHUB_WORKSPACE"
- name: Checkout
uses: actions/checkout@v4
- name: Print GITHUB_WORKSPACE
run: echo "GITHUB_WORKSPACE is $GITHUB_WORKSPACE"
- 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: "./.github/silabs-builds.json"
example-app: "lighting-app"
build-script: "./scripts/examples/gn_silabs_example.sh"