mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-21 14:38:24 +00:00
🔧 Add support for aarch64 linux systems
This commit is contained in:
parent
95e17027f1
commit
5ae12f2490
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
@ -94,9 +94,31 @@ jobs:
|
||||
name: wheels
|
||||
path: dist
|
||||
|
||||
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
|
||||
|
||||
releases:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [linux, windows , macos]
|
||||
needs: [linux, windows , macos , linux-cross]
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
Loading…
Reference in New Issue
Block a user