This commit is contained in:
500-internal-server-error 2025-02-19 21:37:52 +07:00
parent a2d86dbf31
commit e12be06b23
No known key found for this signature in database
GPG Key ID: 9877C47604EE72C2

View File

@ -139,12 +139,12 @@ jobs:
sudo apt install ${{ matrix.config.packages }}
- name: Install dependencies on windows (MSVC)
if: matrix.config.msystem == ''
if: startsWith(matrix.config.os, 'windows') && matrix.config.msystem == ''
run: |
choco install ${{ matrix.config.packages }}
- name: Install dependencies on windows (MSYS2)
if: matrix.config.msystem != ''
if: startsWith(matrix.config.os, 'windows') && matrix.config.msystem != ''
uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.config.msystem }}