mirror of
https://github.com/YunoHost/yunohost-ci.git
synced 2024-09-03 20:05:53 +02:00
27 lines
662 B
Bash
Executable file
27 lines
662 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
source $current_dir/utils.sh # Get utils functions.
|
|
|
|
for debian_version in "bullseye"
|
|
do
|
|
for ynh_version in "stable" "testing" "unstable"
|
|
do
|
|
for snapshot in "before-install" "after-install"
|
|
do
|
|
update_container $debian_version $ynh_version $snapshot
|
|
done
|
|
done
|
|
done
|
|
|
|
for debian_version in "bookworm"
|
|
do
|
|
for ynh_version in "unstable"
|
|
do
|
|
for snapshot in "before-install" "after-install"
|
|
do
|
|
update_container $debian_version $ynh_version $snapshot
|
|
done
|
|
lxc delete -f $(lxc list yunohost-$debian_version-$ynh_version-r -c n -f csv)
|
|
done
|
|
done
|