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
|
2020-08-01 21:17:14 +02:00
|
|
|
rebuild_base_containers $debian_version "stable" "amd64"
|
2020-05-19 16:45:04 +02:00
|
|
|
|
2020-08-01 21:17:14 +02:00
|
|
|
for ynh_version in "testing" "unstable"
|
|
|
|
do
|
|
|
|
for snapshot in "before-install" "after-install"
|
2020-05-19 17:48:31 +02:00
|
|
|
do
|
2020-08-01 21:17:14 +02:00
|
|
|
lxc launch "yunohost-$debian_version-stable-$snapshot" "yunohost-$debian_version-$ynh_version-$snapshot-tmp"
|
|
|
|
|
|
|
|
if [[ "$ynh_version" == "testing" ]]
|
|
|
|
then
|
|
|
|
repo_version="testing"
|
|
|
|
elif [[ "$DISTRIB" == "unstable" ]]
|
|
|
|
then
|
|
|
|
repo_version="testing unstable"
|
|
|
|
fi
|
|
|
|
|
|
|
|
lxc exec "yunohost-$debian_version-$ynh_version-$snapshot-tmp" -- /bin/bash -c "for FILE in \`ls /etc/apt/sources.list /etc/apt/sources.list.d/*\`;
|
|
|
|
do
|
|
|
|
sed -i 's@^deb http://forge.yunohost.org.*@& $repo_version@' \$FILE
|
|
|
|
done"
|
2020-05-19 16:45:04 +02:00
|
|
|
|
2020-08-01 21:17:14 +02:00
|
|
|
rotate_image "yunohost-$debian_version-$ynh_version-$snapshot-tmp" "yunohost-$debian_version-$ynh_version-$snapshot"
|
2020-05-19 16:45:04 +02:00
|
|
|
|
2020-08-01 21:17:14 +02:00
|
|
|
lxc delete -f "yunohost-$debian_version-$ynh_version-$snapshot-tmp"
|
2020-05-19 16:45:04 +02:00
|
|
|
|
2020-08-01 21:17:14 +02:00
|
|
|
update_image $debian_version $ynh_version $snapshot
|
2020-05-19 16:45:04 +02:00
|
|
|
done
|
2020-08-01 21:17:14 +02:00
|
|
|
done
|
2021-06-17 15:43:50 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
for debian_version in "bullseye"
|
|
|
|
do
|
2022-01-20 19:08:12 +01:00
|
|
|
rebuild_base_containers $debian_version "testing" "amd64"
|
2021-06-17 15:43:50 +02:00
|
|
|
rebuild_base_containers $debian_version "unstable" "amd64"
|
|
|
|
done
|