Cirrus: Re-fix build-cache miss on main

After merging #13998 it was observed that the `docker-py` task was still
failing with the same error on `main`.  The original quick-fix had
placed the full-build (`make`) call too late in the process.  This
commit moves it up to right before the `make install` call which was
resulting in an error.

Again, a further future commit is planned to re-work and simplify the
entire cache setup.  This is only a quick fix to make branch-builds
pass.

Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
Chris Evich 2022-04-25 15:33:11 -04:00
parent eb4e53087e
commit c5e48f12ec
No known key found for this signature in database
GPG Key ID: 03EDC70FD578067F
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ case "$TEST_FLAVOR" in
;; ;;
docker-py) docker-py)
remove_packaged_podman_files remove_packaged_podman_files
make install PREFIX=/usr ETCDIR=/etc make && make install PREFIX=/usr ETCDIR=/etc
msg "Installing previously downloaded/cached packages" msg "Installing previously downloaded/cached packages"
dnf install -y $PACKAGE_DOWNLOAD_DIR/python3*.rpm dnf install -y $PACKAGE_DOWNLOAD_DIR/python3*.rpm