From: Elliot Gorokhovsky Date: Thu, 5 Jan 2023 18:48:05 +0000 (-0800) Subject: fix 32-bit gcc mingw test X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fwindows_ci4;p=thirdparty%2Fzstd.git fix 32-bit gcc mingw test --- diff --git a/.github/workflows/dev-short-tests.yml b/.github/workflows/dev-short-tests.yml index 56ac8059f..fb2b63bfc 100644 --- a/.github/workflows/dev-short-tests.yml +++ b/.github/workflows/dev-short-tests.yml @@ -421,8 +421,11 @@ jobs: update: true # Based on https://ariya.io/2020/07/on-github-actions-with-msys2 - name: install mingw gcc - if: ${{ matrix.compiler == 'gcc' }} - run: pacman --noconfirm -S gcc + if: ${{ (matrix.msystem == 'MINGW32') && (matrix.compiler == 'gcc') }} + run: pacman --noconfirm -S mingw-w64-i686-gcc + - name: install mingw gcc + if: ${{ (matrix.msystem == 'MINGW64') && (matrix.compiler == 'gcc') }} + run: pacman --noconfirm -S mingw-w64-x86_64-gcc - name: install mingw clang x86_64 if: ${{ (matrix.msystem == 'MINGW64') && (matrix.compiler == 'clang') }} run: pacman --noconfirm -S mingw-w64-x86_64-clang