mirror of
https://github.com/ceph/ceph
synced 2025-01-29 22:43:40 +00:00
f0bfff1192
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>
11 lines
241 B
Bash
Executable File
11 lines
241 B
Bash
Executable File
#!/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
|