From 5ae91c32fb398f1dc7f1c304627abaa932a39fa9 Mon Sep 17 00:00:00 2001 From: "w.pomp" Date: Thu, 16 Apr 2026 19:18:53 +0200 Subject: [PATCH] CI workflow --- .github/workflows/CI.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e2c2116..9220cac 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,7 +18,7 @@ permissions: contents: read jobs: - linux: + wheels: runs-on: ${{ matrix.platform.runner }} strategy: matrix: @@ -78,7 +78,8 @@ jobs: export CARGO_HOME="${{ runner.temp }}/cargo" source "$CARGO_HOME/env" 2>/dev/null || true maturin sdist --out dist - maturin build --release --out dist --target x86_64-pc-windows-msvc -i python3.14 + rustup target add x86_64-pc-windows-msvc --toolchain nightly + maturin build --release --out dist --target x86_64-pc-windows-msvc maturin build --release --out dist --target x86_64-unknown-linux-gnu - name: Upload wheels @@ -90,7 +91,7 @@ jobs: name: Release runs-on: ubuntu-latest if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} - needs: [linux] + needs: [wheels] permissions: # Use to sign the release artifacts id-token: write