From c5ce897cd3136a76d5f3583aed84aefb5c230af8 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Thu, 9 Jan 2014 17:36:14 -0700 Subject: [PATCH] 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 --- scripts/jenkins-pull-requests-build | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/jenkins-pull-requests-build 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 -- 2.47.3