CI: Update Cygwin NumPy to 1.26 in Python 3.9 #3171
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Cygwin | |
on: | |
push: | |
branches: | |
- "**" | |
paths-ignore: | |
- ".github/workflows/docs.yml" | |
- ".github/workflows/wheels*" | |
- ".gitmodules" | |
- "docs/**" | |
- "wheels/**" | |
pull_request: | |
paths-ignore: | |
- ".github/workflows/docs.yml" | |
- ".github/workflows/wheels*" | |
- ".gitmodules" | |
- "docs/**" | |
- "wheels/**" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
COVERAGE_CORE: sysmon | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-minor-version: [8, 9] | |
timeout-minutes: 40 | |
name: Python 3.${{ matrix.python-minor-version }} | |
steps: | |
- name: Fix line endings | |
run: | | |
git config --global core.autocrlf input | |
- name: Checkout Pillow | |
uses: actions/checkout@v4 | |
- name: Install Cygwin | |
uses: egor-tensin/setup-cygwin@v4 | |
with: | |
install-dir: 'C:/tools/cygwin' | |
packages: > | |
gcc-g++ | |
ghostscript | |
ImageMagick | |
jpeg | |
libfreetype-devel | |
libimagequant-devel | |
libjpeg-devel | |
liblapack-devel | |
liblcms2-devel | |
libopenjp2-devel | |
libraqm-devel | |
libtiff-devel | |
libwebp-devel | |
libxcb-devel | |
libxcb-xinerama0 | |
make | |
netpbm | |
perl | |
python39=3.9.16-1 | |
python3${{ matrix.python-minor-version }}-cffi | |
python3${{ matrix.python-minor-version }}-cython | |
python3${{ matrix.python-minor-version }}-devel | |
python3${{ matrix.python-minor-version }}-numpy | |
python3${{ matrix.python-minor-version }}-sip | |
python3${{ matrix.python-minor-version }}-tkinter | |
wget | |
xorg-server-extra | |
zlib-devel | |
ninja cmake meson | |
- name: Add Lapack to PATH | |
uses: egor-tensin/cleanup-path@v4 | |
with: | |
dirs: 'C:\tools\cygwin\bin;C:\tools\cygwin\lib\lapack' | |
- name: Select Python version | |
run: | | |
ln -sf c:/tools/cygwin/bin/python3.${{ matrix.python-minor-version }} c:/tools/cygwin/bin/python3 | |
- name: Get latest NumPy version | |
id: latest-numpy | |
shell: C:/tools/cygwin/bin/bash.exe -eo pipefail -o igncr "{0}" | |
run: | | |
python3 -m pip list --outdated | grep numpy | sed -r 's/ +/ /g' | cut -d ' ' -f 3 | sed 's/^/version=/' >> $GITHUB_OUTPUT | |
- name: pip cache | |
uses: actions/cache@v4 | |
with: | |
path: 'C:\tools\cygwin\home\runneradmin\.cache\pip' | |
key: ${{ runner.os }}-cygwin-pip3.${{ matrix.python-minor-version }}-numpy${{ steps.latest-numpy.outputs.version }}-${{ hashFiles('.ci/install.sh') }} | |
restore-keys: | | |
${{ runner.os }}-cygwin-pip3.${{ matrix.python-minor-version }}-numpy${{ steps.latest-numpy.outputs.version }}- | |
- name: Build system information | |
run: | | |
C:/tools/cygwin/bin/dash.exe -c "python3 .github/workflows/system-info.py" | |
- name: Install dependencies | |
run: | | |
C:/tools/cygwin/bin/bash.exe .ci/install.sh | |
- name: Upgrade NumPy | |
shell: C:/tools/cygwin/bin/dash.exe -l "{0}" | |
run: | | |
python3 -m pip install -U numpy --config-settings=setup-args="-Dblas=blas" --config-settings=setup-args="-Dlapack=lapack" | |
python3 -c "import numpy as np; print(np.__version__)" | |
- name: Build | |
shell: C:/tools/cygwin/bin/bash.exe -eo pipefail -o igncr "{0}" | |
run: | | |
.ci/build.sh | |
- name: Test | |
run: | | |
C:/tools/cygwin/bin/bash.exe xvfb-run -s '-screen 0 1024x768x24' .ci/test.sh | |
- name: Prepare to upload errors | |
if: failure() | |
run: | | |
C:/tools/cygwin/bin/dash.exe -c "mkdir -p Tests/errors" | |
- name: Upload errors | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: errors | |
path: Tests/errors | |
- name: After success | |
run: | | |
C:/tools/cygwin/bin/bash.exe .ci/after_success.sh | |
- name: Upload coverage | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
flags: GHA_Cygwin | |
name: Cygwin Python 3.${{ matrix.python-minor-version }} | |
success: | |
permissions: | |
contents: none | |
needs: build | |
runs-on: ubuntu-latest | |
name: Cygwin Test Successful | |
steps: | |
- name: Success | |
run: echo Cygwin Test Successful |