aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/bash/function/common.sh
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2019-08-12 06:11:10 +0000
committerPeter Mikus <pmikus@cisco.com>2019-08-12 06:11:10 +0000
commit4929e57e9c8d721000adcbdf2bcbe0dc6952a831 (patch)
tree14675bd9d7be22f3bfd123df84b18dc45a24c701 /resources/libraries/bash/function/common.sh
parent42fdef709bc1b1b557ce6f74609c729ac00ab8c3 (diff)
FIX: Remove unwanted Jenkins dependency
Signed-off-by: Peter Mikus <pmikus@cisco.com> Change-Id: I7a43c3183dc276fa5e4806f31a52cf5844792d4d
Diffstat (limited to 'resources/libraries/bash/function/common.sh')
-rw-r--r--resources/libraries/bash/function/common.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh
index 4a560ff98c..13976aed13 100644
--- a/resources/libraries/bash/function/common.sh
+++ b/resources/libraries/bash/function/common.sh
@@ -594,8 +594,6 @@ function reserve_and_cleanup_testbed () {
# - PYTHON_SCRIPTS_DIR - Path to directory holding the reservation script.
# - BUILD_TAG - Any string suitable as filename, identifying
# test run executing this function. May be unset.
- # - BUILD_URL - Any string suitable as URL, identifying
- # test run executing this function. May be unset.
# Variables set:
# - TOPOLOGIES - Array of paths to topologies, with failed cleanups removed.
# - WORKING_TOPOLOGY - Path to topology yaml file of the reserved testbed.
@@ -611,7 +609,6 @@ function reserve_and_cleanup_testbed () {
set +e
scrpt="${PYTHON_SCRIPTS_DIR}/topo_reservation.py"
opts=("-t" "${topo}" "-r" "${BUILD_TAG:-Unknown}")
- opts+=("-u" "${BUILD_URL:-Unknown}")
python "${scrpt}" "${opts[@]}"
result="$?"
set -e