CI workflow
CI / linux (map[runner:ubuntu-latest target:x86_64-unknown-linux-gnu]) (push) Failing after 4m59s
CI / Release (push) Has been cancelled
CI / sdist (push) Has been cancelled

This commit is contained in:
w.pomp
2026-04-16 17:57:03 +02:00
parent b997843e4c
commit 4612aae50f
+3 -1
View File
@@ -33,6 +33,8 @@ jobs:
with: with:
python-version: 3.x python-version: 3.x
- name: Install Rust (rustup) - name: Install Rust (rustup)
env:
SCCACHE_BUCKET: ${{ secrets.SCCACHE_BUCKET || '' }} # optional
run: | run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env source $HOME/.cargo/env
@@ -45,7 +47,7 @@ jobs:
python -m pip install maturin python -m pip install maturin
maturin build --release --out dist --find-interpreter --target ${{ matrix.platform.target }} maturin build --release --out dist --find-interpreter --target ${{ matrix.platform.target }}
- name: Upload wheels - name: Upload wheels
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v7
with: with:
name: wheels-linux-${{ matrix.platform.target }} name: wheels-linux-${{ matrix.platform.target }}
path: dist path: dist