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 <ken.dreyer@inktank.com>
--- /dev/null
+#!/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