-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
63 additions
and
62 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,70 +60,70 @@ jobs: | |
mv dist/psutil*.tar.gz wheelhouse/ | ||
# Linux + macOS + Python 2 | ||
py2: | ||
name: py2-${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 20 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-12] | ||
env: | ||
CIBW_TEST_COMMAND: | ||
PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/runner.py && | ||
PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/test_memleaks.py | ||
CIBW_TEST_EXTRAS: test | ||
CIBW_BUILD: 'cp27-*' | ||
# py2: | ||
# name: py2-${{ matrix.os }} | ||
# runs-on: ${{ matrix.os }} | ||
# timeout-minutes: 20 | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# os: [ubuntu-latest, macos-12] | ||
# env: | ||
# CIBW_TEST_COMMAND: | ||
# PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/runner.py && | ||
# PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/test_memleaks.py | ||
# CIBW_TEST_EXTRAS: test | ||
# CIBW_BUILD: 'cp27-*' | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: 3.9 | ||
|
||
- name: Create wheels + run tests | ||
uses: pypa/[email protected] | ||
# - name: Create wheels + run tests | ||
# uses: pypa/[email protected] | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: wheels | ||
path: wheelhouse | ||
# - name: Upload wheels | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: wheels | ||
# path: wheelhouse | ||
|
||
- name: Generate .tar.gz | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
make generate-manifest | ||
python setup.py sdist | ||
mv dist/psutil*.tar.gz wheelhouse/ | ||
# - name: Generate .tar.gz | ||
# if: matrix.os == 'ubuntu-latest' | ||
# run: | | ||
# make generate-manifest | ||
# python setup.py sdist | ||
# mv dist/psutil*.tar.gz wheelhouse/ | ||
|
||
# Run linters | ||
linters: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- name: 'Run linters' | ||
run: | | ||
python3 -m pip install ruff rstcheck toml-sort sphinx | ||
make lint-all | ||
# # Run linters | ||
# linters: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: 3.x | ||
# - name: 'Run linters' | ||
# run: | | ||
# python3 -m pip install ruff rstcheck toml-sort sphinx | ||
# make lint-all | ||
|
||
# Check sanity of .tar.gz + wheel files | ||
check-dist: | ||
needs: [py2, py3] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: wheels | ||
path: wheelhouse | ||
- run: | | ||
python scripts/internal/print_hashes.py wheelhouse/ | ||
pipx run twine check --strict wheelhouse/* | ||
pipx run abi3audit --verbose --strict wheelhouse/*-abi3-*.whl | ||
# # Check sanity of .tar.gz + wheel files | ||
# check-dist: | ||
# needs: [py2, py3] | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: 3.x | ||
# - uses: actions/download-artifact@v3 | ||
# with: | ||
# name: wheels | ||
# path: wheelhouse | ||
# - run: | | ||
# python scripts/internal/print_hashes.py wheelhouse/ | ||
# pipx run twine check --strict wheelhouse/* | ||
# pipx run abi3audit --verbose --strict wheelhouse/*-abi3-*.whl |
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