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
27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
export DISTRO_NAME=opensuse
|
|
DIB_RELEASE=${DIB_RELEASE:-42.2}
|
|
export DIB_RELEASE=${DIB_RELEASE,,}
|
|
export DIB_OPENSUSE_MIRROR=${DIB_OPENSUSE_MIRROR:-http://download.opensuse.org}
|
|
case ${DIB_RELEASE} in
|
|
# We are using "=>" as the assignment symbol since "@" "=" etc could be used in the URI itself.
|
|
# Remember, we can't export an array in bash so we use a string instead.
|
|
# Repo format: {name}=>{uri}
|
|
# Old openSUSE releases
|
|
13*)
|
|
ZYPPER_REPOS="update=>${DIB_OPENSUSE_MIRROR}/update/${DIB_RELEASE}/ "
|
|
ZYPPER_REPOS+="oss=>${DIB_OPENSUSE_MIRROR}/distribution/${DIB_RELEASE}/repo/oss/"
|
|
;;
|
|
# New Leap releases
|
|
42*)
|
|
ZYPPER_REPOS="update=>${DIB_OPENSUSE_MIRROR}/update/leap/${DIB_RELEASE}/oss/ "
|
|
ZYPPER_REPOS+="oss=>${DIB_OPENSUSE_MIRROR}/distribution/leap/${DIB_RELEASE}/repo/oss/"
|
|
;;
|
|
# Tumbleweed
|
|
tumbleweed)
|
|
ZYPPER_REPOS="update=>${DIB_OPENSUSE_MIRROR}/update/${DIB_RELEASE}/ "
|
|
ZYPPER_REPOS+="oss=>${DIB_OPENSUSE_MIRROR}/${DIB_RELEASE}/repo/oss/"
|
|
;;
|
|
*) echo "Unsupported openSUSE release: ${DIB_RELEASE}"; exit 1 ;;
|
|
esac
|
|
export ZYPPER_REPOS
|