2021-09-06 15:07:53 +03:00
|
|
|
name: Test MinGW
|
|
|
|
|
2021-11-30 23:14:34 +03:00
|
|
|
on: [push, pull_request, workflow_dispatch]
|
2021-09-06 15:07:53 +03:00
|
|
|
|
|
|
|
jobs:
|
2021-09-12 10:10:31 +03:00
|
|
|
build:
|
2022-01-30 06:40:30 +03:00
|
|
|
runs-on: windows-latest
|
2021-09-06 15:07:53 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
mingw: ["MINGW32", "MINGW64"]
|
|
|
|
include:
|
|
|
|
- mingw: "MINGW32"
|
|
|
|
name: "MSYS2 MinGW 32-bit"
|
|
|
|
package: "mingw-w64-i686"
|
|
|
|
- mingw: "MINGW64"
|
|
|
|
name: "MSYS2 MinGW 64-bit"
|
|
|
|
package: "mingw-w64-x86_64"
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash.exe --login -eo pipefail "{0}"
|
|
|
|
env:
|
|
|
|
MSYSTEM: ${{ matrix.mingw }}
|
|
|
|
CHERE_INVOKING: 1
|
|
|
|
|
|
|
|
timeout-minutes: 30
|
|
|
|
name: ${{ matrix.name }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Pillow
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up shell
|
|
|
|
run: echo "C:\msys64\usr\bin\" >> $env:GITHUB_PATH
|
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
pacman -S --noconfirm \
|
|
|
|
${{ matrix.package }}-python3-cffi \
|
|
|
|
${{ matrix.package }}-python3-numpy \
|
|
|
|
${{ matrix.package }}-python3-olefile \
|
|
|
|
${{ matrix.package }}-python3-pip \
|
2021-10-16 22:55:26 +03:00
|
|
|
${{ matrix.package }}-python-pyqt6 \
|
2021-09-06 15:07:53 +03:00
|
|
|
${{ matrix.package }}-python3-setuptools \
|
|
|
|
${{ matrix.package }}-freetype \
|
|
|
|
${{ matrix.package }}-ghostscript \
|
|
|
|
${{ matrix.package }}-lcms2 \
|
|
|
|
${{ matrix.package }}-libimagequant \
|
|
|
|
${{ matrix.package }}-libjpeg-turbo \
|
|
|
|
${{ matrix.package }}-libraqm \
|
|
|
|
${{ matrix.package }}-libtiff \
|
|
|
|
${{ matrix.package }}-libwebp \
|
|
|
|
${{ matrix.package }}-openjpeg2 \
|
|
|
|
subversion
|
|
|
|
|
2021-10-18 16:06:07 +03:00
|
|
|
python3 -m pip install pyroma pytest pytest-cov pytest-timeout
|
2021-09-06 15:07:53 +03:00
|
|
|
|
|
|
|
pushd depends && ./install_extra_test_images.sh && popd
|
|
|
|
|
|
|
|
- name: Build Pillow
|
2021-12-18 11:43:23 +03:00
|
|
|
run: CFLAGS="-coverage" python3 -m pip install --global-option="build_ext" .
|
2021-09-06 15:07:53 +03:00
|
|
|
|
|
|
|
- name: Test Pillow
|
|
|
|
run: |
|
|
|
|
python3 selftest.py --installed
|
|
|
|
python3 -c "from PIL import Image"
|
|
|
|
python3 -m pytest -vx --cov PIL --cov Tests --cov-report term --cov-report xml Tests
|
|
|
|
|
|
|
|
- name: Upload coverage
|
|
|
|
run: |
|
|
|
|
python3 -m pip install codecov
|
|
|
|
bash <(curl -s https://codecov.io/bash) -F GHA_Windows
|
|
|
|
env:
|
|
|
|
CODECOV_NAME: ${{ matrix.name }}
|
|
|
|
|
|
|
|
success:
|
2021-09-12 10:10:31 +03:00
|
|
|
needs: build
|
2021-09-06 15:07:53 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: MinGW Test Successful
|
|
|
|
steps:
|
|
|
|
- name: Success
|
|
|
|
run: echo MinGW Test Successful
|