Pull latest changes in run-layout.sh

Some of my local tox tests were failing in odd ways; eventually I
chased it down to out-of-date versions of tools left in ".test"
directory.

This tries to pull the latest changes if the repos exist, and adds a
few helpful output points to let you know what's going on.

Change-Id: I30b7ddf84520e8895466a49ed6481812ea8875a8
This commit is contained in:
Ian Wienand
2015-12-03 15:32:12 +11:00
parent bc1cda1acf
commit d793c97904

View File

@@ -16,8 +16,24 @@
mkdir -p .test
cd .test
[ -d zuul ] || git clone https://git.openstack.org/openstack-infra/zuul --depth 1
[ -d jenkins-job-builder ] || git clone https://git.openstack.org/openstack-infra/jenkins-job-builder --depth 1
echo "Setting up .test"
if [ -d zuul ]; then
echo "Updating zuul"
cd zuul; git pull; cd ..
else
echo "Cloning zuul"
git clone https://git.openstack.org/openstack-infra/zuul --depth 1
fi
if [ -d jenkins-job-builder ]; then
echo "Updating jenkins-job-builder"
cd jenkins-job-builder; git pull; cd ..
else
echo "Cloning jenkins-job-builder"
git clone https://git.openstack.org/openstack-infra/jenkins-job-builder --depth 1
fi
cd jenkins-job-builder
# These are $WORKSPACE/.test/jenkins-job-builder/.test/...
mkdir -p .test/new/config