Skip to content

Commit

Permalink
fix artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
mykrupp committed Sep 23, 2024
1 parent 775fac3 commit 4a55acc
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Examples
name: EFR32 Build

on:
push:
Expand All @@ -9,9 +9,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# Every app builds for every board and ncp
app: [dishwasher-app, light-switch-app, lighting-app, lock-app, onoff-plug-app, sensor-app, window-app]
board: [brd4187c, brd4316a, brd4337a]
ncp: [thread]
# Build only specific combinations of app, board and ncp
include:
- board: brd4187c
app: thermostat
Expand All @@ -34,10 +36,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: 'true'
submodules_exclude: |
third_party/simplicity_sdk
third_party/wifi_sdk
third_party/matter_private
# TODO: don't check out simplicity sdk and wifi sdk

# - name: Jfrog CLI setup
# uses: jfrog/setup-jfrog-cli@v4
Expand Down Expand Up @@ -96,6 +95,6 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.app }}-${{ matrix.ncp }}
path: ${SISDK_ROOT}/extension/matter_extension/${{ matrix.board }}/${{ matrix.app }}-${{ matrix.ncp }}
path: ${SISDK_ROOT}/extension/matter_extension/${{ matrix.board }}/${{ matrix.app }}-${{ matrix.ncp }}/build/debug/${{ matrix.app }}-${{ matrix.ncp }}.s37


0 comments on commit 4a55acc

Please sign in to comment.