54f4e12765
openSUSE 13.1 was discontinued on Feb 3rd, 2016, so defaulting to it doesn't make sense (see https://en.opensuse.org/Lifetime). Leap 42.2 is the most current release that is supported by disk-image-builder and being tested in a 3rd party ci. Enable functests for it to ensure we're not regressing again. Moved to non-voting gate first. Depends-On: Iff495b3cd0b6c3558c44cf4883651eca67b572d6 Change-Id: Iae6cd34a5853f1e309861c554d94d8595cbd9993
10 lines
345 B
Bash
10 lines
345 B
Bash
export DISTRO_NAME=opensuse
|
|
export DIB_RELEASE=${DIB_RELEASE:-42.2}
|
|
case ${DIB_RELEASE} in
|
|
# Old openSUSE releases
|
|
13*) export OPENSUSE_REPO_DIR=openSUSE_${DIB_RELEASE} ;;
|
|
# New Leap releases
|
|
42*) export OPENSUSE_REPO_DIR=openSUSE_Leap_${DIB_RELEASE} ;;
|
|
*) echo "Unsupported openSUSE release: ${DIB_RELEASE}"; exit 1 ;;
|
|
esac
|