From: Shlomi Fish Date: Sat, 11 Dec 2021 16:14:57 +0000 (+0200) Subject: gh actions #7: win64: try mingw/cmake fix X-Git-Tag: fortune-mod-3.8.0~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8bef0081cbbc0c97cca1d17c48cde52957ed3245;p=fortune-mod gh actions #7: win64: try mingw/cmake fix --- diff --git a/.github/workflows/windows-x64.yml b/.github/workflows/windows-x64.yml index ebc6846..48072f9 100644 --- a/.github/workflows/windows-x64.yml +++ b/.github/workflows/windows-x64.yml @@ -200,7 +200,7 @@ jobs: SET SKIP_RINUTILS_INSTALL=1 - perl CI-testing/continuous-integration-testing.pl --gen="MSYS Makefiles" + perl CI-testing/continuous-integration-testing.pl --gen="MinGW Makefiles" || ( echo Failed & exit /B 1 ) ' diff --git a/CI-testing/translate-travis.yml-to-github-actions.py b/CI-testing/translate-travis.yml-to-github-actions.py index 55f7443..58bfd06 100644 --- a/CI-testing/translate-travis.yml-to-github-actions.py +++ b/CI-testing/translate-travis.yml-to-github-actions.py @@ -196,6 +196,7 @@ def generate_windows_yaml(plat, output_path, is_act): if cmd.startswith("C:\\cygwin64\\setup"): continue cmd = cmd.replace("cygwin64", "cygwin") + cmd = cmd.replace("MSYS Makefiles", "MinGW Makefiles") if cmd.startswith("cpanm "): words = cmd.split(' ')[1:] dw = []