From a27f6a04994199cacf5e935dc11d724bf7f1c0fe Mon Sep 17 00:00:00 2001 From: Ismoh Date: Wed, 11 May 2022 17:17:32 +0200 Subject: [PATCH] #27 Trying to fix workflows. 30 --- .github/workflows/windows-latest-lua-unit-testing.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows-latest-lua-unit-testing.yml b/.github/workflows/windows-latest-lua-unit-testing.yml index ac4285219..1d75f0053 100644 --- a/.github/workflows/windows-latest-lua-unit-testing.yml +++ b/.github/workflows/windows-latest-lua-unit-testing.yml @@ -19,6 +19,10 @@ jobs: steps: - uses: actions/checkout@main + - uses: msys2/setup-msys2@v2 + with: + msystem: MINGW32 + update: true - name: Make directories for Lua installation run: | @@ -113,7 +117,7 @@ jobs: - name: Install dependencies run: | - echo "C:\msys64\mingw32\bin" >> $GITHUB_PATH + #echo "C:\msys64\mingw32\bin" >> $GITHUB_PATH #cp C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin\x86_64-w64-mingw32-gcc.exe C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin\mingw32-gcc.exe Start-Process -FilePath "${{ env.temp_dir }}\luarocks-3.8.0-windows-32\luarocks.exe" -ArgumentList "--lua-dir=${{ env.lua_install_dir }} --lua-version=5.1 --tree=${{ env.lua_install_dir }} install luacov" -Wait -NoNewWindow