Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install right version of gcc #14

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,8 @@ jobs:
;;
# Update binutils if MinGW due to https://github.com/rust-lang/rust/issues/112368
x86_64-pc-windows-gnu)
C:/msys64/usr/bin/pacman.exe -Syu --needed mingw-w64-x86_64-gcc --noconfirm
echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH
echo "installing gcc" && C:/msys64/usr/bin/pacman.exe -Syu --needed gcc --noconfirm
echo "C:\msys64\usr\bin" >> $GITHUB_PATH
;;
esac
case '${{ matrix.job.os }}' in
Expand Down Expand Up @@ -998,7 +998,10 @@ jobs:
esac
case '${{ matrix.job.os }}' in
# Update binutils if MinGW due to https://github.com/rust-lang/rust/issues/112368
windows-latest) C:/msys64/usr/bin/pacman.exe -Syu --needed mingw-w64-x86_64-gcc --noconfirm ; echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH ;;
windows-latest)
echo "installing gcc" && C:/msys64/usr/bin/pacman.exe -Syu --needed gcc --noconfirm
echo "C:\msys64\usr\bin" >> $GITHUB_PATH
;;
esac
- name: Initialize toolchain-dependent workflow variables
id: dep_vars
Expand Down
Loading