Skip to content

Commit

Permalink
fixed commander path
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarthak-Shaha committed Sep 20, 2024
1 parent c80cecc commit e5c6499
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
wget https://www.silabs.com/documents/public/software/SimplicityCommander-Linux.zip
unzip SimplicityCommander-Linux.zip -d /opt/silabs/simplicity-commander
rm SimplicityCommander-Linux.zip
FILE=$(find /opt/silabs/simplicity-commander -name "*Commander_linux_x86_64*.zip")
if [ -n "$FILE" ]; then
unzip "$FILE" -d /opt/silabs/simplicity-commander
else
echo "File not found"
fi
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
Expand Down Expand Up @@ -66,6 +72,6 @@ jobs:
- name: SLC Build
run: |
export POST_BUILD_EXE=/opt/silabs/simplicity-commander
export POST_BUILD_EXE=/opt/silabs/simplicity-commander/commander/commander
export ARM_GCC_DIR=${{ steps.arm-none-eabi-gcc-action.outputs.path }}/..
make all -C /opt/silabs/simplicity_sdk/extension/matter_extension/brd4187c/lighting-app-thread -f lighting-app-thread.Makefile -j13

0 comments on commit e5c6499

Please sign in to comment.