diff --git a/tests/integration/test_integration__gitaptly.shell b/tests/integration/test_integration__gitaptly.shell index c4e30d08b..4a658e334 100755 --- a/tests/integration/test_integration__gitaptly.shell +++ b/tests/integration/test_integration__gitaptly.shell @@ -5,6 +5,7 @@ fi if [ -n "$GITHUB_TOKEN" ] && type debconf-set-selections; then echo gitaptly gitaptly/GITHUB_API_TOKEN string $GITHUB_TOKEN | sudo debconf-set-selections fi +set -f curl --fail --retry 16 --retry-all-errors https://api.github.com/repos/plengauer/abom-http/releases/latest | jq -r '.assets[].browser_download_url' | grep '.deb$' | xargs wget curl --fail --retry 16 --retry-all-errors https://api.github.com/repos/plengauer/gitaptly/releases/latest | jq -r '.assets[].browser_download_url' | grep '.deb$' | xargs wget \ && (DEBIAN_FRONTEND=noninteractive sudo -E apt-get install -y ./*.deb || exit 0) && sleep 5 \