Skip to content

Commit

Permalink
Updatin CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoPro98 committed Sep 27, 2024
1 parent e7b7407 commit 2de3cc5
Showing 1 changed file with 69 additions and 60 deletions.
129 changes: 69 additions & 60 deletions .github/workflows/deployonTestPyPi.yml
Original file line number Diff line number Diff line change
@@ -1,67 +1,76 @@
name: Build and upload to TestPyPI

on:
push:
branches: [main, dev]
workflow_dispatch:
push:
branches:
- main
- dev

workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]


steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v3
name: Install Python
with:
python-version: 3.9

- name: Build wheels
uses: pypa/[email protected]
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Build SDist
run: pipx run build --sdist

- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz

build_wheels:
name: Wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v4

- uses: pypa/[email protected]
env:
CIBW_SKIP: "*-manylinux_i686"
CIBW_BUILD: cp3* pp3*
CIBW_BEFORE_BUILD: pip install -U pip && pip install pybind11
CIBW_ARCHS_MACOS: x86_64 universal2

- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl

build_sdist:
name: Build source distribution on ${{ matrix.os }}

strategy:
max-parallel: 4
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v3
name: Install Python
with:
python-version: 3.9

- name: Install Pybind11
run: python -m pip install -U pip && python -m pip install pybind11

- name: Build sdist
run: python setup.py sdist

- uses: actions/upload-artifact@v2
with:
path: dist/*.tar.gz
CIBW_SKIP: "*-manylinux_i686"
CIBW_BUILD: cp3*
CIBW_BEFORE_BUILD: pip install -U pip && pip install pybind11
CIBW_ARCHS_MACOS: x86_64 universal2

- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}
path: wheelhouse/*.whl

upload_test_pypi:
name: Publish package distributions to TestPyPI
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
environment: testpypi
if: github.event_name == 'push'

steps:
- uses: actions/setup-python@v5
with:
python-version: "3.x"

- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

0 comments on commit 2de3cc5

Please sign in to comment.