summaryrefslogtreecommitdiff
path: root/hack/get_ci_vm.sh
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2022-01-27 11:02:22 -0500
committerChris Evich <cevich@redhat.com>2022-01-27 11:36:48 -0500
commit4c26a3a5cde02b45a38b04105f5d8d470ef2c458 (patch)
tree9588519a90fc9866a93b212b6c40fad2b74272ff /hack/get_ci_vm.sh
parent5d6b5a03557385e1a0d6d6ecc29522b0101e22dd (diff)
downloadpodman-4c26a3a5cde02b45a38b04105f5d8d470ef2c458.tar.gz
podman-4c26a3a5cde02b45a38b04105f5d8d470ef2c458.tar.bz2
podman-4c26a3a5cde02b45a38b04105f5d8d470ef2c458.zip
Cirrus: Fix get_ci_vm.sh initial setup
Due to some recent changes in the Makefile, the setup part of the script is now breaking with the error: ``` install: cannot stat 'bin/rootlessport': No such file or directory make: *** [Makefile:767: install.bin] Error 1 ``` The root-cause seems to be the `install` targets not properly specifying their build dependencies. This may lead to other problems WRT automation, but for now I'm just patching this tool to workaround the issue. Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'hack/get_ci_vm.sh')
-rwxr-xr-xhack/get_ci_vm.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/hack/get_ci_vm.sh b/hack/get_ci_vm.sh
index 1a4804857..ef7069a81 100755
--- a/hack/get_ci_vm.sh
+++ b/hack/get_ci_vm.sh
@@ -47,11 +47,10 @@ elif [[ "$1" == "--setup" ]]; then
cd $REPO_DIRPATH
echo "+ Loading ./contrib/cirrus/lib.sh" > /dev/stderr
source ./contrib/cirrus/lib.sh
- echo "+ Mimicking .cirrus.yml clone_script and build_task" > /dev/stderr
+ echo "+ Mimicking .cirrus.yml build_task" > /dev/stderr
make install.tools
- make vendor
- make podman
- make podman-remote
+ make binaries
+ make docs
echo "+ Running environment setup" > /dev/stderr
./contrib/cirrus/setup_environment.sh
else