Skip to content

Commit 1b1ed96

Browse files
authored
Remove Strawberry GCC compiler in Windows CI (#41)
* Remove Strawberry GCC compiler in Windows CI * Also remove other gcc * Also remove mingw clang * Remove LLVM compilers
1 parent a0dd289 commit 1b1ed96

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/test.yml

+7
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ jobs:
4444
cd example_pkg
4545
./dev.py build
4646
./dev.py test
47+
- name: Patch Windows runner
48+
if: matrix.os == 'windows-latest'
49+
run: |
50+
Remove-Item -Path C:\Strawberry -Recurse
51+
Remove-Item -Path C:\ProgramData\Chocolatey\bin\gcc.exe
52+
Remove-Item -Path C:\msys64 -Recurse -Force
53+
Remove-Item -Path "C:\Program Files\LLVM" -Recurse
4754
- name: Functional tests (other)
4855
if: matrix.os != 'ubuntu-latest'
4956
run: |

0 commit comments

Comments
 (0)