Add support for building extensions using MinGW compilers #720
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: tests | |
on: [push, pull_request] | |
concurrency: | |
group: >- | |
${{ github.workflow }}- | |
${{ github.ref_type }}- | |
${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
env: | |
# Environment variable to support color support (jaraco/skeleton#66) | |
FORCE_COLOR: 1 | |
# Suppress noisy pip warnings | |
PIP_DISABLE_PIP_VERSION_CHECK: 'true' | |
PIP_NO_PYTHON_VERSION_WARNING: 'true' | |
PIP_NO_WARN_SCRIPT_LOCATION: 'true' | |
# Ensure tests can sense settings about the environment | |
TOX_OVERRIDE: >- | |
testenv.pass_env+=GITHUB_*,FORCE_COLOR | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python: | |
- "3.8" | |
- "3.11" | |
- "3.12" | |
platform: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
include: | |
- python: "3.9" | |
platform: ubuntu-latest | |
- python: "3.10" | |
platform: ubuntu-latest | |
- python: pypy3.9 | |
platform: ubuntu-latest | |
runs-on: ${{ matrix.platform }} | |
continue-on-error: ${{ matrix.python == '3.12' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
allow-prereleases: true | |
- name: Install tox | |
run: | | |
python -m pip install tox | |
- name: Run | |
run: tox | |
diffcov: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.python == '3.12' }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install tox | |
run: | | |
python -m pip install tox | |
- name: Evaluate coverage | |
run: tox | |
env: | |
TOXENV: diffcov | |
docs: | |
runs-on: ubuntu-latest | |
env: | |
TOXENV: docs | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
- name: Install tox | |
run: | | |
python -m pip install tox | |
- name: Run | |
run: tox | |
test_cygwin: | |
# disabled due to lack of Rust support pypa/setuptools#3921 | |
if: ${{ false }} | |
strategy: | |
matrix: | |
python: | |
- 39 | |
platform: | |
- windows-latest | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Cygwin | |
uses: cygwin/cygwin-install-action@v2 | |
with: | |
platform: x86_64 | |
packages: >- | |
python${{ matrix.python }}, | |
python${{ matrix.python }}-devel, | |
python${{ matrix.python }}-pytest, | |
python${{ matrix.python }}-tox, | |
gcc-core, | |
gcc-g++, | |
ncompress | |
- name: Run tests | |
shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0} | |
run: tox | |
test_msys2_mingw: | |
strategy: | |
matrix: | |
include: | |
- { sys: mingw64, env: x86_64 } | |
# - { sys: mingw32, env: i686 } | |
# - { sys: ucrt64, env: ucrt-x86_64 } | |
# - { sys: clang64, env: clang-x86_64 } | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{matrix.sys}} | |
install: | | |
mingw-w64-${{matrix.env}}-toolchain | |
mingw-w64-${{matrix.env}}-python | |
mingw-w64-${{matrix.env}}-python-pip | |
mingw-w64-${{matrix.env}}-python-tox | |
mingw-w64-${{matrix.env}}-python-virtualenv | |
mingw-w64-${{matrix.env}}-cc | |
git | |
- name: Install Dependencies | |
shell: msys2 {0} | |
run: | | |
export VIRTUALENV_NO_SETUPTOOLS=1 | |
python -m virtualenv venv | |
source venv/bin/activate | |
# python-ruff doesn't work without rust | |
sed -i '/pytest-ruff/d' setup.cfg | |
pip install -e .[testing] | |
- name: Run tests | |
shell: msys2 {0} | |
run: | | |
source venv/bin/activate | |
pytest distutils/tests | |
ci_setuptools: | |
# Integration testing with setuptools | |
if: ${{ false }} # disabled for deprecation warnings | |
strategy: | |
matrix: | |
python: | |
- "3.10" | |
platform: | |
- ubuntu-latest | |
runs-on: ${{ matrix.platform }} | |
env: | |
SETUPTOOLS_USE_DISTUTILS: local | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install tox | |
run: | | |
python -m pip install tox | |
- name: Check out pypa/setuptools | |
uses: actions/checkout@v3 | |
with: | |
repository: pypa/setuptools | |
ref: main | |
path: integration/setuptools | |
- name: Replace vendored distutils | |
run: | | |
cd integration/setuptools/setuptools | |
rm -rf _distutils | |
cp -rp ../../../distutils _distutils | |
- name: Run setuptools tests | |
run: | | |
cd integration/setuptools | |
tox | |
env: | |
VIRTUALENV_NO_SETUPTOOLS: null | |
check: # This job does nothing and is only used for the branch protection | |
if: always() | |
needs: | |
- test | |
- docs | |
- test_cygwin | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} | |
release: | |
permissions: | |
contents: write | |
needs: | |
- check | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11-dev | |
- name: Install tox | |
run: | | |
python -m pip install tox | |
- name: Run | |
run: tox -e release | |
env: | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |