Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
removing a couple linux targets that dont want to cooperate
  • Loading branch information
Vhou-Atroph committed Mar 6, 2024
1 parent ab1719e commit 04472bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
target: [x86_64, aarch64, armv7, s390x]
steps:
- name: Checkout branch
uses: actions/checkout@v3
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Build Wheel
run: |
pip install maturin
maturin build --release --out dist --target ${{ matrix.target }}-unknown-linux-gnu
maturin build --release --out dist --target ${{ matrix.target }}-unknown-linux-gnu --find-interpreter
- name: Upload Wheel
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Build Source Distribution
run: |
pip install maturin
maturin build --sdist --out dist
maturin build --release --sdist --out dist
- name: Upload Source Distribution
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 04472bd

Please sign in to comment.