mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-24 16:24:11 +03:00
CI: Specify python minor version everywhere on Cygwin
Finish the last few of these. It's usually unnecessary, but I ran into trouble once with NumPy, and will likely run into more problems if I start submitting packages. A different option would be to use alternatives to point python3 at the right python.
This commit is contained in:
parent
3453b0ea5d
commit
143e57b6cd
8
.github/workflows/test-cygwin.yml
vendored
8
.github/workflows/test-cygwin.yml
vendored
|
@ -56,7 +56,7 @@ jobs:
|
|||
|
||||
- name: Build system information
|
||||
run: |
|
||||
dash.exe -c "python3 .github/workflows/system-info.py"
|
||||
dash.exe -c "python3.${{ matrix.python-minor-version }} .github/workflows/system-info.py"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
@ -77,10 +77,10 @@ jobs:
|
|||
- name: Build
|
||||
shell: bash.exe -eo pipefail -o igncr "{0}"
|
||||
run: |
|
||||
python3 -m coverage erase
|
||||
python3.${{ matrix.python-minor-version }} -m coverage erase
|
||||
make clean
|
||||
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 -m pip install -v --global-option="build_ext" .
|
||||
python3 selftest.py
|
||||
CFLAGS="-coverage -Werror=implicit-function-declaration" python3.${{ matrix.python-minor-version }} -m pip install -v --global-option="build_ext" .
|
||||
python3.${{ matrix.python-minor-version }} selftest.py
|
||||
|
||||
- name: Rebase dlls
|
||||
shell: bash.exe -eo pipefail -o igncr "{0}"
|
||||
|
|
Loading…
Reference in New Issue
Block a user