Skip to content

Commit

Permalink
come on
Browse files Browse the repository at this point in the history
  • Loading branch information
CGMossa committed Jan 20, 2024
1 parent cb2dc41 commit 0a97c52
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
New-Item -Path .cargo -ItemType Directory -Force
$pwd_slash = echo "${PWD}" | % {$_ -replace '\\','/'}
echo "LIBRARY_PATH=`"${pwd_slash}/libgcc_mock`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "LIBRARY_PATH=${pwd_slash}/libgcc_mock;$env:LIBRARY_PATH" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "LD_LIBRARY_PATH=`"${pwd_slash}/libgcc_mock`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
@"
Expand Down Expand Up @@ -365,8 +365,7 @@ jobs:
New-Item -Path .cargo -ItemType Directory -Force
$pwd_slash = echo "${PWD}" | % {$_ -replace '\\','/'}
echo "LIBRARY_PATH=`"${pwd_slash}/libgcc_mock`"" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo $LIBRARY_PATH
echo "LIBRARY_PATH=${pwd_slash}/libgcc_mock" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
@"
[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32.static.posix-gcc.exe"
Expand All @@ -387,6 +386,8 @@ jobs:
# 3.x Run build commands, checking for errors, providing explicit toolchain & target
- name: Build
run: |
echo $LIBRARY_PATH
echo $env:LIBRARY_PATH
. ./ci-cargo.ps1
$targets = $env:BUILD_TARGETS.Split(',')
$toolchain = $env:RUST_TOOLCHAIN
Expand Down

0 comments on commit 0a97c52

Please sign in to comment.