File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 22
33set -e -x -o pipefail
44
5+ OCI_EXE=${OCI_EXE:= podman}
56
67dockcross_version=20250109-7bf589c
78
8- podman pull docker.io/dockcross/manylinux_2_28-x64:$dockcross_version
9- podman run --rm docker.io/dockcross/manylinux_2_28-x64:$dockcross_version > ./dockcross-x64
9+ ${OCI_EXE} pull docker.io/dockcross/manylinux_2_28-x64:$dockcross_version
10+ ${OCI_EXE} run --rm docker.io/dockcross/manylinux_2_28-x64:$dockcross_version > ./dockcross-x64
1011chmod +x ./dockcross-x64
1112
1213./dockcross-x64 cmake -Bbuild -S. -GNinja
@@ -32,5 +33,5 @@ once before running the following commands on an amd64 system.
3233
3334EOF
3435
35- podman pull quay.io/pypa/manylinux_2_28_aarch64:$manylinux_version
36- podman run -it --rm -v $( pwd) :/work quay.io/pypa/manylinux_2_28_aarch64:$manylinux_version /work/manylinux-internal.sh
36+ ${OCI_EXE} pull quay.io/pypa/manylinux_2_28_aarch64:$manylinux_version
37+ ${OCI_EXE} run -it --rm -v $( pwd) :/work quay.io/pypa/manylinux_2_28_aarch64:$manylinux_version /work/manylinux-internal.sh
You can’t perform that action at this time.
0 commit comments