Skip to content

Commit aa3947a

Browse files
committed
.github/workflows/CICD.yml: Do not update gcc
The issue referenced has been long fixed, and for reasons not totally clear to me, blake3 fails after the GCC update (I tried to dig into this, but couldn't really figure out if this is really a problem with GCC 15, or with the version provided by MSYS, or some other side effect of the exact sequence in CI). Since blake3 CI doesn't do that gcc update (it uses the default gcc ~12 in the github windows image), let's _also_ not do that, and if there's a real problem with gcc 15+, that'll presumably fail their CI as well. Fixes #7977.
1 parent c6473e1 commit aa3947a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

.github/workflows/CICD.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -693,11 +693,6 @@ jobs:
693693
sudo apt-get -y update
694694
sudo apt-get -y install fuse3 libfuse-dev
695695
;;
696-
# Update binutils if MinGW due to https://github.com/rust-lang/rust/issues/112368
697-
x86_64-pc-windows-gnu)
698-
C:/msys64/usr/bin/pacman.exe -Sy --needed mingw-w64-x86_64-gcc --noconfirm
699-
echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH
700-
;;
701696
esac
702697
case '${{ matrix.job.os }}' in
703698
macos-latest) brew install coreutils ;; # needed for testing

0 commit comments

Comments
 (0)