Skip to content

Commit

Permalink
Fix 32-bit clang-cl CI(?)
Browse files Browse the repository at this point in the history
  • Loading branch information
solemnwarning committed Aug 5, 2024
1 parent a71927f commit f3f45bc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/scripts/ci/setup_gh_actions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,8 @@ if($identifiers_for_64bit -contains $ARCH ) {
}

echo "SCCACHE_CACHE_SIZE=200M" >> $env:GITHUB_ENV

# Remove standalone LLVM (and clang-cl) from PATH - we want to use the one shipped with VS.
# https://github.com/actions/runner-images/issues/10001#issuecomment-2150541007
$no_llvm_path = ($env:PATH -split ';' | Where-Object { $_ -ne 'C:\Program Files\LLVM\bin' }) -join ';'
echo "PATH=$no_llvm_path" >> $env:GITHUB_ENV

0 comments on commit f3f45bc

Please sign in to comment.