mirror of
https://github.com/YunoHost/yunohost-ci.git
synced 2024-09-03 20:05:53 +02:00
43 lines
No EOL
1.3 KiB
Bash
Executable file
43 lines
No EOL
1.3 KiB
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 "stretch" "buster"
|
|
do
|
|
|
|
# There is no stable and testing version for Buster at this time.
|
|
if [[ "$debian_version" == "buster" ]]
|
|
then
|
|
rebuild_base_containers $debian_version "unstable" "amd64"
|
|
else
|
|
rebuild_base_containers $debian_version "stable" "amd64"
|
|
|
|
for ynh_version in "testing" "unstable"
|
|
do
|
|
for snapshot in "before-install" "after-install"
|
|
do
|
|
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"
|
|
|
|
rotate_image "yunohost-$debian_version-$ynh_version-$snapshot-tmp" "yunohost-$debian_version-$ynh_version-$snapshot"
|
|
|
|
lxc delete -f "yunohost-$debian_version-$ynh_version-$snapshot-tmp"
|
|
|
|
update_image $debian_version $ynh_version $snapshot
|
|
done
|
|
done
|
|
fi
|
|
done |