-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
007e7e9
commit cbe7ac6
Showing
2 changed files
with
92 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Publish cgat-daisy wheels to PyPI and TestPyPI | ||
|
||
on: | ||
push: | ||
branches: | ||
- v[0-9]+.[0-9]+.x | ||
tags: | ||
- v* | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
cibw_archs: ["auto"] | ||
|
||
steps: | ||
- name: Checkout cgat-daisy | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Run image | ||
uses: abatilo/[email protected] | ||
|
||
- name: Poetry install | ||
run: poetry install | ||
|
||
- name: Poetry install | ||
run: poetry build --format=sdist | ||
|
||
- name: Build wheels for linux | ||
if: runner.os == 'Linux' | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* | ||
CIBW_SKIP: "*musllinux*" | ||
CIBW_ARCHS: ${{ matrix.cibw_archs }} | ||
|
||
# - name: Build wheels for macos | ||
# if: runner.os != 'Linux' | ||
# uses: pypa/[email protected] | ||
# env: | ||
# CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* | ||
# CIBW_BEFORE_BUILD: pip install cython | ||
# CIBW_ARCHS: ${{ matrix.cibw_archs }} | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: dist/*.tar.gz | ||
|
||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
|
||
|
||
upload_pypi: | ||
|
||
needs: [build_wheels, build_sdist] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Get Artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: artifact | ||
path: dist | ||
|
||
- name: Publish distribution to Test PyPI | ||
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
repository_url: https://test.pypi.org/legacy/ | ||
|
||
# - name: Publish distribution to PyPI | ||
# if: github.event_name == 'release' && github.event.action == 'published' | ||
# uses: pypa/gh-action-pypi-publish@master | ||
# with: | ||
# password: ${{ secrets.PYPI_API_TOKEN }} | ||
|