From e6e99fad4af94adb8e95a7705dd72e6ea63ad342 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Thu, 10 Aug 2023 13:58:36 -0400 Subject: [PATCH] Build-Push: Install pip and wait-for-copr Podman-Desktop team would like fcos images built with packages from rhcontainerbot/podman-next for MacOS testing with the latest unreleased bits. Ref: https://github.com/containers/podman/issues/19448 This commit installs pip and wait-for-copr in the build-push images. wait-for-copr, as the name suggests, waits for a build with a specified string to become available on a copr repo. Ref: https://github.com/packit/wait-for-copr Signed-off-by: Lokesh Mandvekar --- cache_images/build-push_packaging.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cache_images/build-push_packaging.sh b/cache_images/build-push_packaging.sh index 567d4fe4..ad71f968 100644 --- a/cache_images/build-push_packaging.sh +++ b/cache_images/build-push_packaging.sh @@ -27,6 +27,7 @@ INSTALL_PACKAGES=(\ git jq podman + python3-pip qemu-user-static skopeo ) @@ -45,3 +46,6 @@ cd $REPO_DIRPATH/build-push set -x # Do not auto-update to allow testing inside a PR $SUDO env BUILDPUSHAUTOUPDATED=1 bash ./.install.sh + +# Install wait-for-copr +pip3 install git+https://github.com/packit/wait-for-copr.git@main