Skip to content

Commit 073f1cb

Browse files
authored
....
1 parent b8ca747 commit 073f1cb

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/check.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,19 @@ jobs:
5353
run: |
5454
echo "C:\rtools" >> $GITHUB_PATH
5555
echo "C:\rtools40" >> $GITHUB_PATH
56+
echo "C:\rtools41" >> $GITHUB_PATH
57+
echo "C:\rtools42" >> $GITHUB_PATH
58+
echo "C:\rtools43" >> $GITHUB_PATH
5659
shell: bash
5760
- name: Install Windows dependencies
5861
if: ${{ runner.os == 'Windows' && env.windows-deps != '' }}
5962
run: |
60-
mingw32.exe pacman -Sy
61-
mingw64.exe pacman -Sy
63+
mingw32.exe pacman -Sy || echo "No mingw32.exe"
64+
mingw64.exe pacman -Sy || echo "No mingw64.exe"
6265
for i in ${{ env.windows-deps }}; do
6366
echo -n " $i"
64-
mingw32.exe pacman --sync --noconfirm mingw-w64-i686-$i
65-
mingw64.exe pacman --sync --noconfirm mingw-w64-x86_64-$i mingw-w64-i686-$i
67+
mingw32.exe pacman --sync --noconfirm mingw-w64-i686-$i || echo "No mingw32.exe"
68+
mingw64.exe pacman --sync --noconfirm mingw-w64-x86_64-$i mingw-w64-i686-$i || echo "No mingw64.exe"
6669
done
6770
shell: bash
6871

0 commit comments

Comments
 (0)