yunohost-ci/auto_upgrade_container.sh

17 lines
408 B
Bash
Raw Normal View History

2020-05-18 16:52:26 +02:00
#!/usr/bin/env bash
2020-03-26 17:50:12 +01:00
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source $current_dir/utils.sh # Get utils functions.
for debian_version in "stretch" "buster"
do
for ynh_version in "stable" "testing" "unstable"
do
for snapshot in "before-install" "after-install"
do
image="yunohost-$debian_version-$ynh_version-$snapshot"
2020-03-26 17:50:12 +01:00
update_image $image
done
done
2020-03-26 17:50:12 +01:00
done