repo-install-test: add 'debian10'

Related: OS#4969
Depends: docker-playground I7addb30aa3f8564dcbdc3f6cf2e2e0cfdf4dd02d
Change-Id: If0fc12464b571dc42b33f2a077c77ea6e5120b8d
This commit is contained in:
Oliver Smith 2021-01-20 17:01:38 +01:00
parent 137d39c764
commit 00b7181760
4 changed files with 71 additions and 2 deletions

View File

@ -4,10 +4,12 @@
jobs:
- Osmocom-repo-install-{distro}
distro:
- debian9:
feeds: !!python/tuple [nightly, latest]
- centos8:
feeds: !!python/tuple [next, nightly]
- debian9:
feeds: !!python/tuple [nightly, latest]
- debian10:
feeds: !!python/tuple [nightly, latest]
- job-template:
name: Osmocom-repo-install-{distro}

View File

@ -12,6 +12,7 @@ DISTRO="$1"
DISTROS="
centos8
debian9
debian10
"
check_usage() {

View File

@ -0,0 +1,63 @@
# These packages will not get explicitly installed in this test.
# Package lines must have nothing but the package (no comment,
# no additional space etc).
# OpenBSC
# This is legacy, we aren't really interested in testing openbsc.git
# derived packages. Packages are found in openbsc/debian/control.
openbsc-dev
osmo-bsc-mgcp
osmo-bsc-mgcp-dbg
osmocom-bs11-utils
osmocom-bs11-utils-dbg
osmocom-bsc-nat
osmocom-bsc-nat-dbg
osmocom-bsc-sccplite
osmocom-bsc-sccplite-dbg
osmocom-ipaccess-utils
osmocom-ipaccess-utils-dbg
osmocom-nitb
osmocom-nitb-dbg
# SoapySDR is not used anymore (see OS#3542)
soapysdr-module-lms7
soapysdr0.6-module-lms7
soapysdr0.6-module-lms7-dbgsym
soapysdr0.7-module-lms7
soapysdr0.7-module-lms7-dbgsym
# Depends on specific verions 0.5.4.38.0847 of rtl-sdr, which we won't install
librtlsdr0-dbgsym
rtl-sdr-dbgsym
# Depends on mongodb, which was droppend from debian 10 onwards
open5gs
open5gs-amf
open5gs-amf-dbgsym
open5gs-ausf
open5gs-ausf-dbgsym
open5gs-common
open5gs-common-dbgsym
open5gs-dbg
open5gs-hss
open5gs-hss-dbgsym
open5gs-mme
open5gs-mme-dbgsym
open5gs-nrf
open5gs-nrf-dbgsym
open5gs-pcf
open5gs-pcf-dbgsym
open5gs-pcrf
open5gs-pcrf-dbgsym
open5gs-sgwc
open5gs-sgwc-dbgsym
open5gs-sgwu
open5gs-sgwu-dbgsym
open5gs-smf
open5gs-smf-dbgsym
open5gs-udm
open5gs-udm-dbgsym
open5gs-udr
open5gs-udr-dbgsym
open5gs-upf
open5gs-upf-dbgsym

View File

@ -45,6 +45,9 @@ distro_obsdir() {
debian9)
echo "Debian_9.0"
;;
debian10)
echo "Debian_10"
;;
*)
echo "ERROR: unknown obsdir for '$DISTRO'." >&2
exit 1