|
@@ -3,7 +3,7 @@
|
|
|
#
|
|
|
# maturin generate-ci github
|
|
|
#
|
|
|
-name: CI
|
|
|
+name: Maturin CI
|
|
|
|
|
|
on:
|
|
|
push:
|
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
runs-on: ubuntu-latest
|
|
|
strategy:
|
|
|
matrix:
|
|
|
- target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
|
|
|
+ target: [x86_64, x86, aarch64, armv7]
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
- name: Build wheels
|
|
@@ -76,26 +76,11 @@ jobs:
|
|
|
name: wheels
|
|
|
path: dist
|
|
|
|
|
|
- sdist:
|
|
|
- runs-on: ubuntu-latest
|
|
|
- steps:
|
|
|
- - uses: actions/checkout@v3
|
|
|
- - name: Build sdist
|
|
|
- uses: PyO3/maturin-action@v1
|
|
|
- with:
|
|
|
- command: sdist
|
|
|
- args: --out dist
|
|
|
- - name: Upload sdist
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
- with:
|
|
|
- name: wheels
|
|
|
- path: dist
|
|
|
-
|
|
|
release:
|
|
|
name: Release
|
|
|
runs-on: ubuntu-latest
|
|
|
if: "startsWith(github.ref, 'refs/tags/')"
|
|
|
- needs: [linux, windows, macos, sdist]
|
|
|
+ needs: [linux, windows, macos]
|
|
|
steps:
|
|
|
- uses: actions/download-artifact@v3
|
|
|
with:
|