yunohost-ci/rebuild_all.sh

10 lines
319 B
Bash
Raw Normal View History

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
2020-03-26 18:12:20 +01:00
rebuild_base_containers $debian_version $ynh_version "amd64"
2020-03-26 17:50:12 +01:00
done
done