Skip to content

podvm: fix umoci checkout on s390x #634

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

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion config/peerpods/podvm/libvirt-podvm-image-handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,9 @@ function install_packages() {

if [ "${ARCH}" == "s390x" ]; then
# Build umoci from source for s390x as there are no prebuilt binaries
UMOCI_VERSION="v0.4.7"
mkdir -p umoci
git clone https://github.com/opencontainers/umoci.git
git clone --depth 1 --single-branch https://github.com/opencontainers/umoci.git -b "${UMOCI_VERSION}"
cd umoci || error_exit "Failed to change directory to umoci"
make
cp -pr umoci /usr/local/bin/
Expand Down