#!/bin/bash

set -e -u

arr=( bullseye bookworm trixie forky bionic focal jammy noble questing )

for item in "${arr[@]}"; do
    export RELEASE=$item
    echo "### RELEASE: $RELEASE"
    ./test.sh
done

echo "[$0] fin."
