Skip to content

Commit

Permalink
[MNT] instant release action (#6540)
Browse files Browse the repository at this point in the history
instant release action for 0.30.1
  • Loading branch information
fkiraly committed Jun 4, 2024
1 parent c232295 commit 3fffde0
Showing 1 changed file with 1 addition and 67 deletions.
68 changes: 1 addition & 67 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,76 +27,10 @@ jobs:
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:
fail-fast: false # to not fail all combinations if just one fail
matrix:
os: [ubuntu-latest, macos-13]
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- uses: actions/download-artifact@v4
with:
name: wheels
path: wheelhouse

- name: Display downloaded artifacts
run: ls -l wheelhouse

- name: Get wheel filename
run: echo "WHEELNAME=$(ls ./wheelhouse/sktime-*none-any.whl)" >> $GITHUB_ENV

- name: Install wheel and extras
run: python -m pip install "${{ env.WHEELNAME }}[all_extras_pandas2,dev]"

- name: Run tests
run: make test_without_datasets

test_windows_wheels:
needs: build_wheels
name: Test wheels on ${{ matrix.os }} with ${{ matrix.python-version }}
runs-on: windows-latest
strategy:
fail-fast: false # to not fail all combinations if just one fail
matrix:
os: [windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- uses: actions/download-artifact@v4
with:
name: wheels
path: wheelhouse

- name: Display downloaded artifacts
run: ls -l wheelhouse

- name: Get wheel filename
run: echo "WHEELNAME=$(ls ./wheelhouse/sktime-*none-any.whl)" >> $env:GITHUB_ENV

- name: Install wheel and extras
run: python -m pip install "${env:WHEELNAME}[all_extras_pandas2,dev]"

- name: Run tests # explicit commands as windows does not support make
run: python -m pytest --ignore sktime/datasets

upload_wheels:
name: Upload wheels to PyPI
runs-on: ubuntu-latest
needs: [build_wheels,test_unix_wheels,test_windows_wheels]
needs: [build_wheels]

steps:
- uses: actions/download-artifact@v4
Expand Down

0 comments on commit 3fffde0

Please sign in to comment.