Skip to content

Commit

Permalink
install missed gnu-arm-gcc (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook authored Aug 6, 2023
1 parent 6a70398 commit 1dad1bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,7 @@ jobs:
- name: $PATH
run: |
which pdc || (echo "::error ::Missing pdc from PATH." && exit 1)
- name: arm-none-eabi-gcc
run: |
which arm-none-eabi-gcc || (echo "::error ::Missing arm-none-eabi-gcc from PATH." && exit 1)
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ runs:
echo "PLAYDATE_SDK_PATH=$PWD" >> $GITHUB_ENV
echo "$PWD/bin" >> $GITHUB_PATH
- name: install gnu-arm-gcc
if: runner.os == 'Windows'
shell: powershell
run: choco install --no-progress gcc-arm-embedded -y

- name: install winget
if: runner.os == 'Windows'
shell: powershell
Expand Down

0 comments on commit 1dad1bb

Please sign in to comment.