osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/31311 )
Change subject: repo-install-test: update tests for e1d/ggsn/pfcp ......................................................................
repo-install-test: update tests for e1d/ggsn/pfcp
Disable workarounds for OS#5817, where packaging bugs have been fixed.
Change-Id: I2452993abc1c0fe78bef464f1a62fe578b48016b --- M scripts/repo-install-test/run-inside.sh 1 file changed, 8 insertions(+), 11 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/11/31311/1
diff --git a/scripts/repo-install-test/run-inside.sh b/scripts/repo-install-test/run-inside.sh index df9b3cf..d959cc0 100755 --- a/scripts/repo-install-test/run-inside.sh +++ b/scripts/repo-install-test/run-inside.sh @@ -11,8 +11,6 @@ # Systemd services that must start up successfully after installing all packages (OS#3369) # Disabled services: # * osmo-ctrl2cgi (missing config: /etc/osmocom/ctrl2cgi.ini, OS#4108) -# * osmo-e1d (missing config, OS#5817) -# * osmo-ggsn (conflicting config, OS#5817) # * osmo-remsim-client (exits immediately without USB device) # * osmo-trap2cgi (missing config: /etc/osmocom/%N.ini, OS#4108) # * osmo-trx-* (exits immediately without trx device) @@ -21,7 +19,9 @@ osmo-bsc osmo-bts-virtual osmo-cbc + osmo-e1d osmo-gbproxy + osmo-ggsn osmo-gtphub osmo-hlr osmo-hnbgw @@ -415,16 +415,17 @@ test_binaries_version \ osmo-trx-usrp1 ;; - centos8*) - # OS#5817: not packaged for debian - test_binaries_version \ - osmo-pfcp-tool - ;; esac
if [ "$DISTRO" != "debian10" ]; then test_binaries_version \ osmo-upf + + # OS#5817: not packaged for debian, needs osmo-upf release + if [ "$FEED" = "nightly" ] || [ "$DISTRO" = "centos8" ]; then + test_binaries_version \ + osmo-pfcp-tool + fi fi
if [ "$FEED" = "nightly" ]; then @@ -452,10 +453,6 @@ fi fi
- # OS#5817: osmo-ggsn conflicts with osmo-gtphub; explicitly stop it - # here until it is fixed, as it gets auto-started after installation - systemctl stop osmo-ggsn - systemctl start $services_feed sleep 2