Skip to content

Commit

Permalink
Add --break-system-packages to pip install command
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Oct 9, 2024
1 parent 399a6b6 commit 496f5b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11803,12 +11803,12 @@ async function dockerBuild(container, maturinRelease, hostHomeMount, args) {
'echo "::group::Install maturin"',
`curl -L ${url} | tar -xz -C /usr/local/bin`,
'maturin --version || true',
'which patchelf > /dev/null || python3 -m pip install patchelf',
'python3 -m pip install cffi || true',
'which patchelf > /dev/null || python3 -m pip install --break-system-packages patchelf',
'python3 -m pip install --break-system-packages cffi || true',
'echo "::endgroup::"'
];
if (args.includes('--zig')) {
commands.push('echo "::group::Install Zig"', 'python3 -m pip install ziglang', 'echo "::endgroup::"');
commands.push('echo "::group::Install Zig"', 'python3 -m pip install --break-system-packages ziglang', 'echo "::endgroup::"');
}
if (target.length > 0) {
commands.push('echo "::group::Install Rust target"', `if [[ ! -d $(rustc --print target-libdir --target ${target}) ]]; then rustup target add ${target}; fi`, 'echo "::endgroup::"');
Expand All @@ -11822,7 +11822,7 @@ async function dockerBuild(container, maturinRelease, hostHomeMount, args) {
commands.push('echo "::group::Run before script"', ...beforeScript.split('\n'), 'echo "::endgroup::"');
}
if (sccache) {
commands.push('echo "::group::Install sccache"', 'python3 -m pip install "sccache>=0.4.0"', 'sccache --version', 'echo "::endgroup::"');
commands.push('echo "::group::Install sccache"', 'python3 -m pip install --break-system-packages "sccache>=0.4.0"', 'sccache --version', 'echo "::endgroup::"');
setupSccacheEnv();
}
commands.push(`maturin ${args.join(' ')}`);
Expand Down
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,14 +565,14 @@ async function dockerBuild(
'echo "::group::Install maturin"',
`curl -L ${url} | tar -xz -C /usr/local/bin`,
'maturin --version || true',
'which patchelf > /dev/null || python3 -m pip install patchelf',
'python3 -m pip install cffi || true', // Allow failure for now
'which patchelf > /dev/null || python3 -m pip install --break-system-packages patchelf',
'python3 -m pip install --break-system-packages cffi || true', // Allow failure for now
'echo "::endgroup::"'
]
if (args.includes('--zig')) {
commands.push(
'echo "::group::Install Zig"',
'python3 -m pip install ziglang',
'python3 -m pip install --break-system-packages ziglang',
'echo "::endgroup::"'
)
}
Expand Down Expand Up @@ -604,7 +604,7 @@ async function dockerBuild(
if (sccache) {
commands.push(
'echo "::group::Install sccache"',
'python3 -m pip install "sccache>=0.4.0"',
'python3 -m pip install --break-system-packages "sccache>=0.4.0"',
'sccache --version',
'echo "::endgroup::"'
)
Expand Down

0 comments on commit 496f5b2

Please sign in to comment.