Skip to content

Commit 393feaf

Browse files
Merge pull request #6153 from cre4ture/fix/windows_ci_by_not_upgrading_all_packages
don't upgrade packages - msys2-runtime upgrade fails in CI
2 parents 3a6bf34 + 765e09e commit 393feaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CICD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ jobs:
624624
;;
625625
# Update binutils if MinGW due to https://github.com/rust-lang/rust/issues/112368
626626
x86_64-pc-windows-gnu)
627-
C:/msys64/usr/bin/pacman.exe -Syu --needed mingw-w64-x86_64-gcc --noconfirm
627+
C:/msys64/usr/bin/pacman.exe -Sy --needed mingw-w64-x86_64-gcc --noconfirm
628628
echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH
629629
;;
630630
esac
@@ -998,7 +998,7 @@ jobs:
998998
esac
999999
case '${{ matrix.job.os }}' in
10001000
# Update binutils if MinGW due to https://github.com/rust-lang/rust/issues/112368
1001-
windows-latest) C:/msys64/usr/bin/pacman.exe -Syu --needed mingw-w64-x86_64-gcc --noconfirm ; echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH ;;
1001+
windows-latest) C:/msys64/usr/bin/pacman.exe -Sy --needed mingw-w64-x86_64-gcc --noconfirm ; echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH ;;
10021002
esac
10031003
- name: Initialize toolchain-dependent workflow variables
10041004
id: dep_vars

0 commit comments

Comments
 (0)