Skip to content

Commit 9677b92

Browse files
committed
👔 Disable sccache on linux-riscv64 maturin build
Not supported yet because sccache=0.14.0 on PyPI doesn't have riscv64 wheels.
1 parent 67ff8f5 commit 9677b92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
target: ${{ matrix.platform.target }}
8888
args: --release --locked --compatibility pypi --features ${{ matrix.platform.feat-flags || 'pyo3' }} --out dist --interpreter python3.13
89-
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
89+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') && matrix.platform.target != 'riscv64' }}
9090
manylinux: ${{ matrix.platform.manylinux || '2_28' }}
9191
before-script-linux: |
9292
# Install nvTIFF and clang-devel
@@ -110,7 +110,7 @@ jobs:
110110
with:
111111
target: ${{ matrix.platform.target }}
112112
args: --release --locked --compatibility pypi --features ${{ matrix.platform.feat-flags || 'pyo3' }} --out dist --interpreter python3.13t
113-
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
113+
sccache: ${{ !startsWith(github.ref, 'refs/tags/') && matrix.platform.target != 'riscv64' }}
114114
manylinux: ${{ matrix.platform.manylinux || '2_28' }}
115115
before-script-linux: |
116116
# Install nvTIFF and clang-devel

0 commit comments

Comments
 (0)