aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2022-11-07 09:51:17 +0100
committerdaniel <dwillmann@sysmocom.de>2022-11-07 10:17:36 +0000
commitdf4522ade4426c2f2364579d6707e223aa52a939 (patch)
tree9ec03e5898c140b7276dfc5767f8eaf33c6ae076
parenta0cd1869b2c8f0fd58156cbac9f79f41ab01dacd (diff)
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
-rwxr-xr-xttcn3-hnbgw-test/jenkins.sh9
1 files changed, 6 insertions, 3 deletions
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 @@ run_tests() {
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