Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --break-system-packages to pip install command #293

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading