We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02d77c4 commit 6f8e16eCopy full SHA for 6f8e16e
.github/workflows/c-tests.yaml
@@ -29,7 +29,10 @@ jobs:
29
rustup default 1.93.0-x86_64-pc-windows-gnu
30
$rustcPath = rustup which rustc --toolchain 1.93.0-x86_64-pc-windows-gnu
31
$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 }
34
$mingwGcc = "$toolchainPath/lib/rustlib/x86_64-pc-windows-gnu/bin/gcc.exe" -replace '\\', '/'
35
+ Write-Host "Setting CI_GCC to: $mingwGcc"
36
echo "CI_GCC=$mingwGcc" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
37
38
- name: Test
0 commit comments