forked from ssc-oscar/oscar.py
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: split workflows and get trusted publishing right
- Loading branch information
Showing
2 changed files
with
73 additions
and
21 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Build wheels | ||
|
||
on: | ||
push: | ||
paths: | ||
# only build wheels when the package code changes | ||
- 'woc/**' | ||
- 'setup.py' | ||
workflow_dispatch: | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build-wheel: | ||
name: wheels | ||
runs-on: ubuntu-latest | ||
# trigger the workflow only on default branch, or manually | ||
if: ${{ github.event_name == 'workflow_dispatch' || github.ref_name == github.event.repository.default_branch }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: cp3{8,9,10,11}-manylinux_x86_64 | ||
# force manylinux2014 to avoid compatibility issues on RHEL 7 | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 | ||
# install required dependencies: bz2 | ||
CIBW_BEFORE_ALL: yum install -y bzip2-devel | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: wheels | ||
path: wheelhouse/*.whl | ||
|
||
build-sdist: | ||
name: sdist | ||
runs-on: ubuntu-latest | ||
# trigger the workflow only on default branch, or manually | ||
if: ${{ github.event_name == 'workflow_dispatch' || github.ref_name == github.event.repository.default_branch }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Build source distribution | ||
run: pipx run build --sdist | ||
|
||
- name: Upload source distribution | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: sdist | ||
path: dist/*.tar.gz |
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 |
---|---|---|
@@ -1,13 +1,9 @@ | ||
name: Build wheels and publish | ||
name: Build and publish to PyPI | ||
|
||
on: | ||
push: | ||
paths: | ||
# only build wheels when the package code changes | ||
- 'woc/**' | ||
- 'setup.py' | ||
tags: | ||
- 'v*.*.*' | ||
- 'v*' # push tags to trigger the workflow | ||
workflow_dispatch: | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
|
@@ -21,12 +17,6 @@ jobs: | |
name: wheels | ||
runs-on: ubuntu-latest | ||
# trigger the workflow only on default branch, or manually | ||
if: | | ||
${{ github.event_name == 'workflow_dispatch' | ||
|| ( github.event_name == 'push' && ( | ||
github.ref_name == github.event.repository.default_branch | ||
|| startsWith(github.ref, 'refs/tags/v') | ||
) ) }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -36,7 +26,7 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: cp38-manylinux_x86_64 | ||
CIBW_BUILD: cp3{8,9,10,11}-manylinux_x86_64 | ||
# force manylinux2014 to avoid compatibility issues on RHEL 7 | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 | ||
# install required dependencies: bz2 | ||
|
@@ -51,13 +41,6 @@ jobs: | |
build-sdist: | ||
name: sdist | ||
runs-on: ubuntu-latest | ||
# trigger the workflow only on default branch, or manually | ||
if: | | ||
${{ github.event_name == 'workflow_dispatch' | ||
|| ( github.event_name == 'push' && ( | ||
github.ref_name == github.event.repository.default_branch | ||
|| startsWith(github.ref, 'refs/tags/v') | ||
) ) }} | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -81,7 +64,6 @@ jobs: | |
needs: [build-wheel, build-sdist] | ||
permissions: | ||
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | ||
if: startsWith(github.ref, 'refs/tags/v') # can not publish without a tag | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -99,5 +81,12 @@ jobs: | |
with: | ||
path: dist | ||
|
||
- name: Move everything to dist | ||
run: | | ||
mv dist/wheels/*.whl dist | ||
mv dist/sdist/*.tar.gz dist | ||
rm -r dist/wheels | ||
rm -r dist/sdist | ||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |