Skip to content

Commit 87f3cc4

Browse files
committed
Fix
1 parent 41e3446 commit 87f3cc4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/pysplashsurf_CI.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
strategy:
109109
fail-fast: false
110110
matrix:
111-
target: [x86_64, x86, aarch64, armv7]
111+
target: [x86_64, i686, aarch64, armv7]
112112
steps:
113113
- uses: actions/checkout@v4
114114
- name: Download stub artifact
@@ -265,14 +265,14 @@ jobs:
265265
matrix:
266266
include:
267267
- runner: windows-latest
268-
target: x64
269-
rust-target: x64
268+
py-arch: x64
269+
target: x86_64
270270
- runner: windows-latest
271-
target: x86
272-
rust-target: x86
271+
py-arch: x86
272+
target: i686
273273
- runner: windows-11-arm
274-
target: arm64
275-
rust-target: aarch64
274+
py-arch: arm64
275+
target: aarch64
276276
steps:
277277
- uses: actions/checkout@v4
278278
- name: Download stub artifact
@@ -283,11 +283,11 @@ jobs:
283283
- uses: actions/setup-python@v5
284284
with:
285285
python-version: 3.12
286-
architecture: ${{ matrix.target }}
286+
architecture: ${{ matrix.py-arch }}
287287
- name: Build wheels
288288
uses: PyO3/maturin-action@v1
289289
with:
290-
target: ${{ matrix.rust-target }}
290+
target: ${{ matrix.target }}
291291
args: --release --out wheelhouse -m pysplashsurf/Cargo.toml
292292
#sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
293293
- name: Audit wheels

0 commit comments

Comments
 (0)