Skip to content
Snippets Groups Projects
Commit 6d2afa3c authored by Simon McVittie's avatar Simon McVittie
Browse files

tests: Always download both scout and soldier


Now that we're invoking populate-depot.py once per runtime branch, it's
straightforward to use different versions for different runtimes.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent ca50f4ed
No related branches found
No related tags found
No related merge requests found
Pipeline #14256 failed
This commit is part of merge request !322. Comments created here will be created in the context of that merge request.
......@@ -18,13 +18,18 @@ if [ -n "${IMAGES_DOWNLOAD_URL-}" ] && [ -n "${IMAGES_DOWNLOAD_CREDENTIAL-}" ];
--images-uri "${IMAGES_DOWNLOAD_URL}"/steamrt-SUITE/snapshots \
${NULL+}
else
suites="scout"
set -- \
--version latest-steam-client-public-beta \
${NULL+}
suites="scout=latest-steam-client-public-beta soldier=latest-container-runtime-public-beta"
set -- # no extra arguments
fi
for suite in $suites; do
case "$suite" in
(*=*)
set -- "$@" --version "${suite#*=}"
suite="${suite%%=*}"
;;
esac
time python3 ./pressure-vessel/populate-depot.py \
--depot="$builddir/depots/$suite" \
--pressure-vessel "${PRESSURE_VESSEL}" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment