Skip to content

Workflow file for this run

name: Build wheels and publish to PyPI
on:
release:
types: [published]
jobs:
build_wheels:
name: Build wheels
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build wheel
run: |
python -m pip install build
python -m build --wheel --sdist --outdir wheelhouse
- name: Store wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: wheelhouse/*
test_unix_wheels:
needs: build_wheels
name: Test wheels on ${{ matrix.os }} with ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macOS-11]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v2
with:
name: wheels
path: wheelhouse
- name: Get wheel filename
run: echo "WHEELNAME=$(ls ./wheelhouse/skbase-*none-any.whl)" >> $GITHUB_ENV
- name: Install wheel and extras
run: python -m pip install "${{ env.WHEELNAME }}[all_extras,dev]"
- name: Run tests
run: |
python -m pytest
test_windows_wheels:
needs: build_wheels
name: Test wheels on ${{ matrix.os }} with ${{ matrix.python-version }}
runs-on: windows-2019
strategy:
matrix:
include:
# Window 64 bit
- os: windows-2019
python: 38
python-version: '3.8'
bitness: 64
platform_id: win_amd64
- os: windows-2019
python: 39
python-version: '3.9'
bitness: 64
platform_id: win_amd64
- os: windows-2019
python: 310
python-version: '3.10'
bitness: 64
platform_id: win_amd64
- os: windows-2019
python: 311
python-version: 3.11
bitness: 64
platform_id: win_amd64
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: anaconda, conda-forge,
- run: conda --version
- run: which python
- uses: actions/download-artifact@v2
with:
name: wheels
path: wheelhouse
- name: Install conda libpython
run: conda install -c anaconda -n test -y libpython
- name: Display downloaded artifacts
run: ls -l wheelhouse
- name: Get wheel filename
run: echo "WHEELNAME=$(ls ./wheelhouse/skbase-*none-any.whl)" >> $env:GITHUB_ENV
- name: Activate conda env
run: conda activate test
- name: Install wheel and extras
run: python -m pip install "${env:WHEELNAME}[all_extras,dev]"
- name: Show conda packages
run: conda list -n test
- name: Run tests
run: |
python -m pytest
upload_wheels:
name: Upload wheels to PyPI
runs-on: ubuntu-latest
needs: [build_wheels,test_unix_wheels,test_windows_wheels]
steps:
- uses: actions/download-artifact@v2
with:
name: wheels
path: wheelhouse
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: wheelhouse/