Open
Description
My actions contains a section like:
maturin-linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, aarch64, armv7]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --strip --locked --out dist --manifest-path chrs/Cargo.toml
# sscache seems to be broken
# sccache: 'true'
manylinux: manylinux_2_28
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
If I set sccache: 'true'
, I get this error:
/usr/bin/python3: No module named pip
Error: The process '/usr/bin/docker' failed with exit code 1
at ExecState._setResult (/home/runner/work/_actions/PyO3/maturin-action/v1/dist/index.js:1702:25)
at ExecState.CheckComplete (/home/runner/work/_actions/PyO3/maturin-action/v1/dist/index.js:1685:18)
at ChildProcess.<anonymous> (/home/runner/work/_actions/PyO3/maturin-action/v1/dist/index.js:1579:27)
at ChildProcess.emit (node:events:514:28)
at maybeClose (node:internal/child_process:1105:16)
at ChildProcess._handle.onexit (node:internal/child_process:305:5)
https://github.com/FNNDSC/chrs/actions/runs/8243560850/job/22544352067
With sccache commented out, the builds are successful. https://github.com/FNNDSC/chrs/actions/runs/8243573628/job/22544388834
Metadata
Assignees
Labels
No labels
Activity