File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -232,10 +232,12 @@ jobs:
232
232
# make Windows packages like Clang available in MSYS
233
233
path-type : inherit
234
234
235
- - name : Delete MinGW gmake (MSVC)
236
- if : env.IS_WINDOWS_MSVC == 'true'
237
- # delete /c/Strawberry/c/bin/gmake built for MinGW that is found on runners, because we must use make built for MSYS
238
- run : if GMAKE_PATH=`which gmake`; then rm -f "$GMAKE_PATH"; fi
235
+ - name : Remove Perl Strawberry installation (MSVC)
236
+ if : env.IS_WINDOWS_MSVC == 'true' && github.event.inputs.tools_windows_msvc_branch
237
+ # this directory contains various MinGW libraries that can get picked up by CMake
238
+ # and a MinGW gmake that we cannot use (we must use MSYS make), so we delete it
239
+ run : rmdir /S /Q C:\Strawberry\c
240
+ shell : cmd
239
241
240
242
- name : Install Windows packages (MSVC)
241
243
if : env.IS_WINDOWS_MSVC == 'true'
You can’t perform that action at this time.
0 commit comments