From 0dff22cd34f83e6cf9cab9957ccf8f5ee3b5fa42 Mon Sep 17 00:00:00 2001 From: Mathieu Kardous Date: Fri, 13 Dec 2024 12:44:59 -0500 Subject: [PATCH] WIP --- .github/silabs-builds.json | 8 ++++++++ .github/workflows/lighting-app.yaml | 26 ++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/silabs-builds.json create mode 100644 .github/workflows/lighting-app.yaml diff --git a/.github/silabs-builds.json b/.github/silabs-builds.json new file mode 100644 index 0000000000..1f269e401c --- /dev/null +++ b/.github/silabs-builds.json @@ -0,0 +1,8 @@ +{ + "lighting-app": [ + { + "boards": ["BRD4187C"], + "arguments": [] + } + ] +} \ No newline at end of file diff --git a/.github/workflows/lighting-app.yaml b/.github/workflows/lighting-app.yaml new file mode 100644 index 0000000000..0693cfb4b5 --- /dev/null +++ b/.github/workflows/lighting-app.yaml @@ -0,0 +1,26 @@ +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: Checkout + uses: actions/checkout@v4 + + - name: Checkout submodules & Bootstrap + uses: ./.github/actions/checkout-submodules-and-bootstrap + with: + platform: silabs_docker