yunohost-ci/auto_upgrade_container.sh

27 lines
572 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.
2020-08-01 21:17:14 +02:00
for debian_version in "buster"
2020-03-26 17:50:12 +01:00
do
for ynh_version in "stable" "testing" "unstable"
do
for snapshot in "before-install" "after-install"
do
2020-05-19 20:57:20 +02:00
update_image $debian_version $ynh_version $snapshot
done
done
2021-06-17 15:43:50 +02:00
done
for debian_version in "bullseye"
do
for ynh_version in "unstable"
do
for snapshot in "before-install" "after-install"
do
update_image $debian_version $ynh_version $snapshot
done
done
done