Skip to content

Commit

Permalink
FIX: 64-bit python
Browse files Browse the repository at this point in the history
  • Loading branch information
tcztzy committed Sep 27, 2024
1 parent 22d45c5 commit d83e973
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ on:
jobs:
windows:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.10, 3.11]
target: [x86_64-pc-windows-msvc, x86_64-pc-windows-gnu, i686-pc-windows-msvc, i686-pc-windows-gnu]
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: '3.10'
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: messense/[email protected]
with:
command: build
args: --release --no-sdist -o dist --manifest-path bindings/python/Cargo.toml
target: ${{ matrix.target }}
args: --release -i python${{ matrix.python-version }} --no-sdist -o dist --manifest-path bindings/python/Cargo.toml
- name: Upload wheels
uses: actions/[email protected]
with:
Expand Down

0 comments on commit d83e973

Please sign in to comment.