mirror of
https://github.com/YunoHost/yunohost-ci.git
synced 2024-09-03 20:05:53 +02:00
12 lines
360 B
Bash
12 lines
360 B
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
|
||
|
for ynh_version in "stable" "testing" "unstable"
|
||
|
do
|
||
|
local base_image="yunohost-$debian_version-$ynh_version"
|
||
|
|
||
|
rebuild_base_containers $BASE_IMAGE
|
||
|
done
|
||
|
done
|