CI workflow
CI / linux (map[runner:ubuntu-latest target:x86_64-unknown-linux-gnu]) (push) Successful in 4m38s
CI / sdist (push) Failing after 11s
CI / Release (push) Has been skipped

This commit is contained in:
w.pomp
2026-04-16 18:18:04 +02:00
parent 6ec28d2eca
commit 1c5e599470
+4 -1
View File
@@ -32,6 +32,7 @@ jobs:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: 3.x python-version: 3.x
- name: Cache Rust and sccache - name: Cache Rust and sccache
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
@@ -75,8 +76,10 @@ jobs:
- name: Build wheels - name: Build wheels
run: | run: |
python -m pip install maturin export CARGO_HOME="${{ runner.temp }}/cargo"
export PATH="$CARGO_HOME/bin:$PATH"
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@v3.2.2 uses: actions/upload-artifact@v3.2.2
with: with: