2023-10-21 15:09:18 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-10-22 10:31:35 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2023-10-22 09:14:54 +00:00
|
|
|
tags:
|
|
|
|
- '**'
|
2023-10-22 10:31:35 +00:00
|
|
|
workflow_dispatch: ~
|
2023-10-21 15:09:18 +00:00
|
|
|
pull_request:
|
2023-10-22 10:31:35 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2023-10-21 15:09:18 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-12-27 12:49:22 +00:00
|
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
2023-10-21 15:09:18 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-12-27 12:49:22 +00:00
|
|
|
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
|
2023-10-21 15:09:18 +00:00
|
|
|
steps:
|
2023-12-27 12:49:22 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Build wheels
|
|
|
|
uses: PyO3/maturin-action@v1
|
|
|
|
with:
|
|
|
|
rust-toolchain: nightly
|
|
|
|
command: build
|
|
|
|
args: --release --out dist
|
|
|
|
- name: Upload wheels
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: dist
|
2023-10-21 15:09:18 +00:00
|
|
|
|
2023-12-27 12:49:22 +00:00
|
|
|
windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
|
|
- name: Build wheels
|
|
|
|
uses: PyO3/maturin-action@v1
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --release --out dist
|
|
|
|
- name: Upload wheels
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: dist
|
2023-10-21 15:09:18 +00:00
|
|
|
|
2023-12-27 12:49:22 +00:00
|
|
|
macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
|
|
- name: Build wheels
|
|
|
|
uses: PyO3/maturin-action@v1
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --release --out dist --sdist
|
|
|
|
- name: Build wheels - universal2
|
|
|
|
uses: PyO3/maturin-action@v1
|
|
|
|
with:
|
|
|
|
command: build
|
|
|
|
args: --release --out dist
|
|
|
|
- name: Upload wheels
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: dist
|
2023-10-21 15:09:18 +00:00
|
|
|
|
2023-12-28 01:46:28 +00:00
|
|
|
linux-cross:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target: ['aarch64']
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Build wheels
|
|
|
|
uses: PyO3/maturin-action@v1
|
|
|
|
with:
|
|
|
|
rust-toolchain: nightly
|
|
|
|
target: ${{ matrix.target }}
|
|
|
|
manylinux: auto
|
|
|
|
args: --release --out dist --interpreter 3.8 3.9 3.10 3.11 3.12
|
|
|
|
- name: Upload wheels
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: wheels
|
|
|
|
path: dist
|
|
|
|
|
2023-12-27 12:49:22 +00:00
|
|
|
releases:
|
2023-10-22 09:14:54 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-28 01:46:28 +00:00
|
|
|
needs: [linux, windows , macos , linux-cross]
|
2023-10-22 09:14:54 +00:00
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: 3.11
|
|
|
|
|
|
|
|
- name: Install Twine
|
|
|
|
run: |
|
|
|
|
pip install twine
|
|
|
|
|
|
|
|
- name: get dist artifacts
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
2023-11-08 02:03:14 +00:00
|
|
|
name: python-genshin-artifact
|
2023-10-22 09:14:54 +00:00
|
|
|
path: dist
|
2023-10-21 15:22:22 +00:00
|
|
|
|
2023-10-22 09:14:54 +00:00
|
|
|
- name: upload to pypi
|
|
|
|
run: twine upload dist/*
|
|
|
|
env:
|
|
|
|
TWINE_USERNAME: __token__
|
|
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|