Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VirxEC authored Dec 18, 2024
1 parent ade0b88 commit 250c861
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64]
target: [x86_64-unknown-linux-gnu]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -35,7 +35,9 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
rust-toolchain: nightly
rust-components: rust-src
args: --release --out dist --find-interpreter -Z build-std=std,panic_abort
sccache: 'true'
manylinux: auto
- name: Upload wheels
Expand All @@ -48,7 +50,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
target: [x64]
target: [x86_64-pc-windows-msvc]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -61,7 +63,9 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
rust-toolchain: nightly
rust-components: rust-src
args: --release --out dist --find-interpreter -Z build-std=std,panic_abort
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 250c861

Please sign in to comment.