Skip to content

Commit

Permalink
cicd: temporarily remove windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Nov 29, 2024
1 parent ab63524 commit ed79653
Showing 1 changed file with 36 additions and 33 deletions.
69 changes: 36 additions & 33 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
name: wheels-linux-${{ matrix.platform.target }}
path: dist

## comment out for now. Some dependency is unable to build
# musllinux:
# runs-on: ${{ matrix.platform.runner }}
# strategy:
Expand Down Expand Up @@ -93,38 +94,40 @@ jobs:
# name: wheels-musllinux-${{ matrix.platform.target }}
# path: dist

windows:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: windows-latest
target: x64
- runner: windows-latest
target: x86
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --manifest-path rust/Cargo.toml
sccache: 'true'
- name: Build free-threaded wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --manifest-path rust/Cargo.toml -i python3.13t
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-windows-${{ matrix.platform.target }}
path: dist
## Comment out for now. Issue with a python3.13t interpreter?
## https://github.com/gks-anvil/vrsix/actions/runs/12090090720/job/33716511078
# windows:
# runs-on: ${{ matrix.platform.runner }}
# strategy:
# matrix:
# platform:
# - runner: windows-latest
# target: x64
# - runner: windows-latest
# target: x86
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: 3.x
# architecture: ${{ matrix.platform.target }}
# - name: Build wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.platform.target }}
# args: --release --out dist --manifest-path rust/Cargo.toml
# sccache: 'true'
# - name: Build free-threaded wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.platform.target }}
# args: --release --out dist --manifest-path rust/Cargo.toml -i python3.13t
# sccache: 'true'
# - name: Upload wheels
# uses: actions/upload-artifact@v4
# with:
# name: wheels-windows-${{ matrix.platform.target }}
# path: dist

macos:
runs-on: ${{ matrix.platform.runner }}
Expand Down Expand Up @@ -180,7 +183,7 @@ jobs:
needs: [
linux,
# musllinux,
windows,
# windows,
macos,
sdist
]
Expand Down

0 comments on commit ed79653

Please sign in to comment.