From b8e690f3bdd2b372d44166fdab3edd3c93116978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Fri, 6 Oct 2023 17:58:37 +0200 Subject: [PATCH] Work around a GitHub Actions regression --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47127d0..3505af7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,6 +90,17 @@ jobs: with: arch: ${{matrix.arch}} + - name: Install MSYS2 + if: matrix.compiler == 'mingw' + uses: msys2/setup-msys2@v2 + with: + update: true + install: mingw-w64-x86_64-ninja + + - name: Put MSYS2_MinGW64 on PATH + if: matrix.compiler == 'mingw' + run: echo "D:/a/_temp/msys64/mingw64/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + - name: Install apt dependencies (Linux) if: runner.os == 'Linux' run: |