mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-07 05:13:15 +03:00
Added matrix to test Python 3.7 and 32-bit
This commit is contained in:
parent
629340654c
commit
728bc7d778
25
.github/workflows/test-cygwin.yml
vendored
25
.github/workflows/test-cygwin.yml
vendored
|
@ -5,7 +5,15 @@ on: [push, pull_request, workflow_dispatch]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
name: Cygwin Python 3.8
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
python-minor-version: [7, 8]
|
||||||
|
architecture: ["x86", "x86_64"]
|
||||||
|
|
||||||
|
timeout-minutes: 30
|
||||||
|
|
||||||
|
name: Python 3.${{ matrix.python-minor-version }} ${{ matrix.architecture }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Fix line endings
|
- name: Fix line endings
|
||||||
|
@ -18,12 +26,15 @@ jobs:
|
||||||
- name: Install Cygwin
|
- name: Install Cygwin
|
||||||
uses: cygwin/cygwin-install-action@v1
|
uses: cygwin/cygwin-install-action@v1
|
||||||
with:
|
with:
|
||||||
platform: x86_64
|
platform: ${{ matrix.architecture }}
|
||||||
packages: >
|
packages: >
|
||||||
ImageMagick python38-cffi python38-numpy python38-sip
|
ImageMagick python3${{ matrix.python-minor-version }}-cffi
|
||||||
python38-devel python38-tkinter ghostscript libfreetype-devel
|
python3${{ matrix.python-minor-version }}-devel
|
||||||
libimagequant-devel libjpeg-devel liblcms2-devel libopenjp2-devel
|
python3${{ matrix.python-minor-version }}-numpy
|
||||||
libraqm-devel libtiff-devel libwebp-devel libxcb-devel
|
python3${{ matrix.python-minor-version }}-sip
|
||||||
|
python3${{ matrix.python-minor-version }}-tkinter ghostscript
|
||||||
|
libfreetype-devel libimagequant-devel libjpeg-devel liblcms2-devel
|
||||||
|
libopenjp2-devel libraqm-devel libtiff-devel libwebp-devel libxcb-devel
|
||||||
libxcb-xinerama0 qt5-devel-tools xorg-server-extra zlib-devel
|
libxcb-xinerama0 qt5-devel-tools xorg-server-extra zlib-devel
|
||||||
|
|
||||||
- name: Build system information
|
- name: Build system information
|
||||||
|
@ -60,7 +71,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
file: ./coverage.xml
|
file: ./coverage.xml
|
||||||
flags: GHA_Cygwin
|
flags: GHA_Cygwin
|
||||||
name: ${{ runner.os }} Cygwin Python 3.8 ${{ matrix.architecture }}
|
name: Cygwin Python 3.${{ matrix.python-minor-version }} ${{ matrix.architecture }}
|
||||||
|
|
||||||
- name: After failure
|
- name: After failure
|
||||||
if: failure()
|
if: failure()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user