From c203ee697d52af42188c03fea3c882594826e322 Mon Sep 17 00:00:00 2001 From: Alexey Min Date: Sun, 12 Jan 2020 15:35:23 +0300 Subject: [PATCH] CI: add new requirements for pmbootstrap https://gitlab.com/postmarketOS/pmbootstrap/commit/02e514f4d375e8c6956df2a69b505adf6b7296da added a new required program from host system: git --- .gitlab-ci/install_pmbootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/install_pmbootstrap.sh b/.gitlab-ci/install_pmbootstrap.sh index b2f7ada3d..ff50f8fad 100755 --- a/.gitlab-ci/install_pmbootstrap.sh +++ b/.gitlab-ci/install_pmbootstrap.sh @@ -11,7 +11,7 @@ url="https://gitlab.com/postmarketOS/pmbootstrap/-/archive/$tag/pmbootstrap-$tag pmaports="$(cd $(dirname $0)/..; pwd -P)" # Set up depends and binfmt_misc -depends="coreutils openssl python3 sudo $@" +depends="coreutils openssl python3 sudo git $@" echo "Installing dependencies: $depends" apk -q add $depends mount -t binfmt_misc none /proc/sys/fs/binfmt_misc @@ -32,7 +32,7 @@ mv pmbootstrap-* pmbootstrap # Install to $PATH and init ln -s /tmp/pmbootstrap/pmbootstrap.py /usr/local/bin/pmbootstrap echo "Initializing pmbootstrap" -if ! su pmos -c "yes '' | pmbootstrap -q --aports '$pmaports' init"; then +if ! su pmos -c "yes '' | pmbootstrap -q --aports '$pmaports' --details-to-stdout init"; then echo "ERROR: pmbootstrap init failed!" echo echo "Most likely, this means that pmbootstrap requires a newer"