Skip to content

Commit

Permalink
ci/windows: stop Strawberry perl from changing resulting built artifa…
Browse files Browse the repository at this point in the history
…cts in CI (#3114)
  • Loading branch information
xTVaser authored Nov 2, 2023
1 parent ae35b54 commit 4fbc925
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/windows-build-clang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ jobs:

- uses: ilammy/msvc-dev-cmd@v1

# https://github.com/actions/runner-images/issues/5459
# Causes binaries to be built differently, get rid of this garbage
- name: Remove Strawberry Perl from PATH
run: |
$env:PATH = $env:PATH -replace "C:\\Strawberry\\c\\bin;", ""
"PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: CMake Generation
shell: cmd
run: cmake -B build --preset=${{ inputs.cmakePreset }} -DCMAKE_C_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache.exe -DCMAKE_CXX_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache.exe .
Expand Down

0 comments on commit 4fbc925

Please sign in to comment.