daniel has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/37192?usp=email )
Change subject: jenkins-common: Treat -asan builds as -master ......................................................................
jenkins-common: Treat -asan builds as -master
This fixes the jenkins test failures seen in ttcn3-stp-test-asan. TTCN3 tries to connect to stp via TCP, but since the jenkins.sh script doesn't consider this a build from master the corresponding config is not added to osmo-stp.cfg.
Related: OS#6486 Change-Id: Ibf93880345f38668f8dc812d1523b985d368dfcc --- M jenkins-common.sh 1 file changed, 16 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/92/37192/1
diff --git a/jenkins-common.sh b/jenkins-common.sh index 1caa5dd..809bd06 100644 --- a/jenkins-common.sh +++ b/jenkins-common.sh @@ -548,6 +548,7 @@ image_suffix_is_master() { case "$IMAGE_SUFFIX" in master*) return 0 ;; + asan*) return 0 ;; *) return 1 ;; esac }