From: Ken Dreyer Date: Fri, 10 Jan 2014 00:36:14 +0000 (-0700) Subject: add jenkins-pull-requests-build script X-Git-Tag: v1.3.5~10^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c5ce897cd3136a76d5f3583aed84aefb5c230af8;p=ceph-deploy.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 ceph-deploy-pull-requests Jenkins task to only run this script. Signed-off-by: Ken Dreyer --- diff --git a/scripts/jenkins-pull-requests-build b/scripts/jenkins-pull-requests-build new file mode 100644 index 0000000..6a4da91 --- /dev/null +++ b/scripts/jenkins-pull-requests-build @@ -0,0 +1,11 @@ +#!/bin/sh + +# This is the script that runs inside Jenkins for each pull request. +# http://jenkins.ceph.com/job/ceph-deploy-pull-requests/ + +virtualenv --version +virtualenv venv +. venv/bin/activate +#venv/bin/python setup.py develop +venv/bin/pip install tox +venv/bin/tox -rv