-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd init(hui-python): new temp cd docs: auto update index.rst init(hui-python): new temp cd init(hui-python): new temp cd
- Loading branch information
Showing
2 changed files
with
168 additions
and
44 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,112 @@ | ||
name: Continuous Deployment | ||
'on': | ||
push: | ||
tags: | ||
- '*' | ||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
target: | ||
- x86_64 | ||
- x86 | ||
- aarch64 | ||
- armv7 | ||
- s390x | ||
- ppc64le | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- name: Build wheels | ||
uses: PyO3/maturin-action@v1 | ||
with: | ||
target: '${{ matrix.target }}' | ||
args: '--release --out dist --find-interpreter' | ||
sccache: 'true' | ||
manylinux: auto | ||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: wheels | ||
path: dist | ||
windows: | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
target: | ||
- x64 | ||
- x86 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
architecture: '${{ matrix.target }}' | ||
- name: Build wheels | ||
uses: PyO3/maturin-action@v1 | ||
with: | ||
target: '${{ matrix.target }}' | ||
args: '--release --out dist --find-interpreter' | ||
sccache: 'true' | ||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: wheels | ||
path: dist | ||
macos: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
target: | ||
- x86_64 | ||
- aarch64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- name: Build wheels | ||
uses: PyO3/maturin-action@v1 | ||
with: | ||
target: '${{ matrix.target }}' | ||
args: '--release --out dist --find-interpreter' | ||
sccache: 'true' | ||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: wheels | ||
path: dist | ||
release: | ||
permissions: write-all | ||
name: Release | ||
runs-on: ubuntu-latest | ||
if: 'startsWith(github.ref, ''refs/tags/'')' | ||
needs: | ||
- macos | ||
- windows | ||
- linux | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: wheels | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
with: | ||
tag_name: '${{ github.ref }}' | ||
release_name: 'Release ${{ github.ref }}' | ||
draft: false | ||
prerelease: false | ||
- name: Upload Release Asset | ||
id: upload-release-asset | ||
uses: softprops/action-gh-release@v2 | ||
env: | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: '*.whl' |
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