File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -544,12 +544,19 @@ jobs:
544
544
set -o errexit
545
545
curl -sS --output rustup-init.exe https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe
546
546
./rustup-init.exe --default-toolchain 1.81 -y
547
- echo 'export PATH="$PATH;$USERPROFILE/.cargo/bin"' >> "$BASH_ENV"
547
+ echo 'export PATH="$PATH:$USERPROFILE/.cargo/bin"' >> "$BASH_ENV"
548
+ ls $USERPROFILE/.cargo/bin
549
+ - run :
550
+ name : Install gcc
551
+ command : |
552
+ set -o errexit
553
+ choco install -y mingw
554
+ echo 'export PATH="$PATH:/c/ProgramData/mingw64/mingw64/bin"' >> "$BASH_ENV"
548
555
- run :
549
556
name : Version information
550
557
command : |
551
558
set -o errexit
552
- rustc --version; cargo --version; rustup --version; rustup target list --installed
559
+ rustc --version; cargo --version; rustup --version; rustup target list --installed; gcc --version
553
560
- restore_cache :
554
561
keys :
555
562
- cachev3-package_vm_windows-rust:1.81-{{ checksum "Cargo.lock" }}
@@ -1183,12 +1190,12 @@ jobs:
1183
1190
name : Install necessary packages
1184
1191
command : |
1185
1192
apk update
1186
- apk add mold clang curl coreutils gnupg
1193
+ apk add mold clang curl coreutils gnupg llvm19-dev zlib-static clang19-static
1187
1194
- run :
1188
1195
name : Install grcov
1189
1196
command : |
1190
1197
rustup component add llvm-tools-preview
1191
- cargo install grcov --locked
1198
+ LD_DEBUG=all cargo install grcov --locked
1192
1199
- run :
1193
1200
name : Run tests with coverage
1194
1201
command : |
You can’t perform that action at this time.
0 commit comments