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: 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" |