mirror of https://github.com/containers/podman.git
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:
parent
eb4e53087e
commit
c5e48f12ec
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue