From: Ken Dreyer Date: Thu, 13 Feb 2014 23:35:00 +0000 (-0700) Subject: add jenkins-pull-requests-build script X-Git-Tag: 1.1.0~1652^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F190%2Fhead;p=teuthology.git add jenkins-pull-requests-build script Move our Jenkins pull requests build script out of Jenkins' database and into Git so that we can have greater visibility on future changes. Going forward, we will modify the teuthology-pull-requests Jenkins task to only run this script. Signed-off-by: Ken Dreyer --- diff --git a/jenkins/jenkins-pull-requests-build b/jenkins/jenkins-pull-requests-build new file mode 100755 index 000000000..e9ad052f2 --- /dev/null +++ b/jenkins/jenkins-pull-requests-build @@ -0,0 +1,10 @@ +#!/bin/sh + +# This is the script that runs inside Jenkins. +# http://jenkins.ceph.com/job/teuthology-pull-requests/ + +virtualenv --version +virtualenv --system-site-packages --distribute venv +. venv/bin/activate +venv/bin/pip install tox +tox -rv