diff --git a/common/travis/check-install.sh b/common/travis/check-install.sh index d414a4a163e..2117e45a1ea 100755 --- a/common/travis/check-install.sh +++ b/common/travis/check-install.sh @@ -27,6 +27,13 @@ ADDREPO="--repository=hostdir/binpkgs/bootstrap --repository=hostdir/binpkgs/nonfree" ROOTDIR="-r /check-install" +# HACK: remove remote bootstrap repo from consideration +# if the libc package is virtual (like musl1.1), xbps +# can choose the one provided by cross-vpkg-dummy instead +# of the actual package +# this is fine to do here because it runs last in CI +sed -i -e '/bootstrap/d' "${CONFDIR#-C }"/*remote*.conf + # if this fails, there were no packages built for this arch and thus no repodatas xbps-install $ROOTDIR $ADDREPO $CONFDIR -S || exit 0