X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fopendaylight-infra-cleanup-stale-stacks.sh;h=18a5a969136446f9c34141215e98ffc529fe7708;hb=3c58e6f3d790405107a895a5bca46b191b4385be;hp=a4c5ba32d872a01a589866d1bf485fcff89bfa09;hpb=b8d6c13f439fda647aeb7a0064e3862562513cd4;p=releng%2Fbuilder.git diff --git a/jjb/opendaylight-infra-cleanup-stale-stacks.sh b/jjb/opendaylight-infra-cleanup-stale-stacks.sh index a4c5ba32d..18a5a9691 100644 --- a/jjb/opendaylight-infra-cleanup-stale-stacks.sh +++ b/jjb/opendaylight-infra-cleanup-stale-stacks.sh @@ -1,11 +1,21 @@ #!/bin/bash -virtualenv "$WORKSPACE/.venv" -# shellcheck disable=SC1090 -source "$WORKSPACE/.venv/bin/activate" -PYTHON="$WORKSPACE/.venv/bin/python" -$PYTHON -m pip install --upgrade pip -$PYTHON -m pip install --upgrade python-openstackclient python-heatclient -$PYTHON -m pip freeze +# SPDX-License-Identifier: EPL-1.0 +############################################################################## +# Copyright (c) 2017 The Linux Foundation and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +############################################################################## + +virtualenv "/tmp/v/openstack" +# shellcheck source=/tmp/v/openstack/bin/activate disable=SC1091 +source "/tmp/v/openstack/bin/activate" +pip install --upgrade pip +pip install --upgrade python-openstackclient python-heatclient +pip install --upgrade pipdeptree +pipdeptree ######################### ## FETCH ACTIVE BUILDS ## @@ -23,7 +33,7 @@ OS_STACKS=($(openstack stack list \ ACTIVE_BUILDS=() for silo in releng sandbox; do JENKINS_URL="https://jenkins.opendaylight.org/$silo//computer/api/json?tree=computer[executors[currentExecutable[url]],oneOffExecutors[currentExecutable[url]]]&xpath=//url&wrapper=builds" - wget --no-verbose -O "${silo}_builds.json" "$JENKINS_URL" + wget -nv -O "${silo}_builds.json" "$JENKINS_URL" sleep 1 # Need to sleep for 1 second otherwise next line causes script to stall ACTIVE_BUILDS=(${ACTIVE_BUILDS[@]} $( \ jq -r '.computer[].executors[].currentExecutable.url' "${silo}_builds.json" \