1
0
mirror of synced 2026-01-26 03:41:32 +00:00

Declare testability in distributions.conf instead of hardcoding it

Mark buster and bullseye as not testable, too, for now.

Move comment about #659360 (debootstrap cannot build Ubuntu Edgy or
earlier) from release-testing to distributions.conf, too.
This commit is contained in:
Axel Beckert
2017-01-17 17:55:38 +01:00
parent 126d0ad5bc
commit 76aabb0eb5
3 changed files with 10 additions and 7 deletions

View File

@@ -2,7 +2,6 @@
set -e
# Skip dapper and edgy due to bug #659360 in debootstrap
for dist in $(awk '!/^#|^$/ {print $1}' /etc/xen-tools/distributions.conf | egrep -v '^(dapper|edgy|buster|bullseye)$'); do
for dist in $(awk '!/^#|^$|dont-test/ {print $1}' /etc/xen-tools/distributions.conf); do
xen-create-image --dist $dist --hostname "xen-tools-release-testing-$dist" --force --verbose "$@"
done 2>&1 | tee xen-tools-release-testing.log