Commit 5308ab91 authored by Jan Kiene's avatar Jan Kiene
Browse files

add dbg printout

parent b5811d1d
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ set -euo pipefail

MSG_NO_FLOAT_REF_BRANCH_FOUND="Your branch name %s looks like it is a porting MR, but there is no corresponding float merge request (%s).
If this is intended (nothing to port to ivas-float-update), simply ignore this warning.
If there should be a float ref branch for this MR, please check your spelling on your other branch and make sure that you pushed it.
If there should be a float ref branch for this MR, please check your spelling on your other branch and make sure that you pushed it.\n
"

exit_code_is_porting_mr=0
@@ -47,7 +47,9 @@ fi
float_ref_branchname=$(${CI_PROJECT_DIR}/ivas-codec-ci/snippets/basop/get-float-ref-branch-name.sh $CI_COMMIT_REF_NAME)
if [ "$float_ref_branchname" == "ivas-float-update" ]; then
  expected_float_ref_branch="${CI_COMMIT_REF_NAME/basop/ref}"
  printf "$MSG_NO_FLOAT_REF_BRANCH_FOUND" "$CI_COMMIT_REF_NAME" "$expected_float_ref_branch" ||  true
  printf "$MSG_NO_FLOAT_REF_BRANCH_FOUND" "$CI_COMMIT_REF_NAME" "$expected_float_ref_branch"

  echo "Now exiting"
  exit 123
fi