]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Uninstall strawberryperl
authorIlya Leoshkevich <iii@linux.ibm.com>
Mon, 27 Jun 2022 18:16:54 +0000 (20:16 +0200)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Thu, 30 Jun 2022 10:49:17 +0000 (12:49 +0200)
strawberryperl installs /c/Strawberry/c/bin/libstdc++-6.dll, which is
incompatible with the mingw64 one. zlib-ng does not need perl, so
simply remove it.

.github/workflows/cmake.yml

index 9667d5f79b50ec73711636056cb54d0009b2268b..ddafa77f7352683ccc9691bf5b64aa8089ea08de 100644 (file)
@@ -425,6 +425,9 @@ jobs:
     - name: Install packages (Windows)
       if: runner.os == 'Windows'
       run: |
+        # strawberryperl installs /c/Strawberry/c/bin/libstdc++-6.dll, which is incompatible with the mingw64 one.
+        # zlib-ng does not need perl, so simply remove it.
+        choco uninstall strawberryperl --no-progress
         choco install ninja ${{ matrix.packages }} --no-progress
 
     - name: Install packages (macOS)