17b2bda1a0
Added all of the files from slave_scripts to jenkins_slave. Includes the changes I submitted in https://review.openstack.org/6063 Changed the jobs to use these rather than the ones from openstack-ci. Change-Id: I4bd9e78b3d9c0cbbc6a0b17fc95c60458b06a0f7
16 lines
428 B
Bash
Executable File
16 lines
428 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# Support jobs, such as nova-docs, which are not yet triggered by gerrit
|
|
if [ "x$GERRIT_BRANCH" = "x" ] ; then
|
|
GERRIT_BRANCH=master
|
|
fi
|
|
mv jenkins_venvs/$GERRIT_BRANCH/.cache.bundle .
|
|
rm -fr jenkins_venvs
|
|
|
|
if [ -f tools/test-requires -a \
|
|
`git diff HEAD^1 tools/test-requires 2>/dev/null | wc -l` -gt 0 -o \
|
|
`git diff HEAD^1 tools/pip-requires 2>/dev/null | wc -l` -gt 0 ]
|
|
then
|
|
rm .cache.bundle
|
|
fi
|