Added MSYS2-MinGW64 specific code.

This commit is contained in:
Patrick Lehmann
2022-01-09 19:05:58 +01:00
parent 0da8c5a5c5
commit e00f5cf53d

View File

@@ -79,10 +79,20 @@ jobs:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: 🔧 Install dependencies - name: 🔧 Install dependencies
if: matrix.system != 'msys2'
run: | run: |
python -m pip install -U pip wheel python -m pip install -U pip wheel
python -m pip install ${{ inputs.requirements }} python -m pip install ${{ inputs.requirements }}
- name: 🔧 Install dependencies
if: matrix.system == 'msys2'
run: |
pacman -S --noconfirm mingw64/mingw-w64-x86_64-python-wheel
pacman -S --noconfirm mingw64/mingw-w64-x86_64-python-coverage
pacman -S --noconfirm mingw64/mingw-w64-x86_64-python-lxml
python -m pip install -U pip
python -m pip install ${{ inputs.requirements }}
- name: ☑ Run unit tests - name: ☑ Run unit tests
if: matrix.system == 'windows' if: matrix.system == 'windows'
run: | run: |