Skip to content

Commit 6f8e16e

Browse files
committed
?
1 parent 02d77c4 commit 6f8e16e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/c-tests.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ jobs:
2929
rustup default 1.93.0-x86_64-pc-windows-gnu
3030
$rustcPath = rustup which rustc --toolchain 1.93.0-x86_64-pc-windows-gnu
3131
$toolchainPath = Split-Path (Split-Path $rustcPath)
32+
Write-Host "Toolchain path: $toolchainPath"
33+
Get-ChildItem -Path "$toolchainPath/lib/rustlib/x86_64-pc-windows-gnu" -Recurse -Filter "gcc.exe" | Select-Object -First 5 | ForEach-Object { Write-Host $_.FullName }
3234
$mingwGcc = "$toolchainPath/lib/rustlib/x86_64-pc-windows-gnu/bin/gcc.exe" -replace '\\', '/'
35+
Write-Host "Setting CI_GCC to: $mingwGcc"
3336
echo "CI_GCC=$mingwGcc" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
3437
3538
- name: Test

0 commit comments

Comments
 (0)