daniel has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/30047 )
Change subject: hnbgw: Only build with_pfcp on master ......................................................................
hnbgw: Only build with_pfcp on master
The functionality is not in -latest yet so running osmo-hnbgw with this configuration fails which in turn fails the test in jenkins instead of just marking it unstable.
Change-Id: I4309c323c1d61e8f22dae499c407d57999f6f13a --- M ttcn3-hnbgw-test/jenkins.sh 1 file changed, 6 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/47/30047/1
diff --git a/ttcn3-hnbgw-test/jenkins.sh b/ttcn3-hnbgw-test/jenkins.sh index 8c1ddf5..fee2728 100755 --- a/ttcn3-hnbgw-test/jenkins.sh +++ b/ttcn3-hnbgw-test/jenkins.sh @@ -80,6 +80,9 @@ echo Testing without PFCP run_tests "$VOL_BASE_DIR" "HNBGW_Tests.cfg" "osmo-stp.cfg" "osmo-hnbgw.cfg"
-echo Testing with PFCP -mkdir "$VOL_BASE_DIR_PFCP" -run_tests "$VOL_BASE_DIR_PFCP" "with-pfcp/HNBGW_Tests.cfg" "osmo-stp.cfg" "with-pfcp/osmo-hnbgw.cfg" +# Disable until osmo-hnbgw release >1.3.0 +if image_suffix_is_master; then + echo Testing with PFCP + mkdir "$VOL_BASE_DIR_PFCP" + run_tests "$VOL_BASE_DIR_PFCP" "with-pfcp/HNBGW_Tests.cfg" "osmo-stp.cfg" "with-pfcp/osmo-hnbgw.cfg" +fi