Skip to content

Commit

Permalink
....
Browse files Browse the repository at this point in the history
  • Loading branch information
richetyann authored Oct 17, 2023
1 parent b8ca747 commit 073f1cb
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,19 @@ jobs:
run: |
echo "C:\rtools" >> $GITHUB_PATH
echo "C:\rtools40" >> $GITHUB_PATH
echo "C:\rtools41" >> $GITHUB_PATH
echo "C:\rtools42" >> $GITHUB_PATH
echo "C:\rtools43" >> $GITHUB_PATH
shell: bash
- name: Install Windows dependencies
if: ${{ runner.os == 'Windows' && env.windows-deps != '' }}
run: |
mingw32.exe pacman -Sy
mingw64.exe pacman -Sy
mingw32.exe pacman -Sy || echo "No mingw32.exe"
mingw64.exe pacman -Sy || echo "No mingw64.exe"
for i in ${{ env.windows-deps }}; do
echo -n " $i"
mingw32.exe pacman --sync --noconfirm mingw-w64-i686-$i
mingw64.exe pacman --sync --noconfirm mingw-w64-x86_64-$i mingw-w64-i686-$i
mingw32.exe pacman --sync --noconfirm mingw-w64-i686-$i || echo "No mingw32.exe"
mingw64.exe pacman --sync --noconfirm mingw-w64-x86_64-$i mingw-w64-i686-$i || echo "No mingw64.exe"
done
shell: bash

Expand Down

0 comments on commit 073f1cb

Please sign in to comment.