mirror of
https://github.com/ceph/ceph
synced 2024-12-27 05:53:20 +00:00
a53454ba8d
Jenkins will dynamically write the commands in its database into a script and run it with "-x" and "-e" in order to display each step and fail after the first step fails. Now that our commands are stored in Git, ensure that we're doing the same thing. Signed-off-by: Ken Dreyer <ken.dreyer@inktank.com>
14 lines
256 B
Bash
Executable File
14 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This is the script that runs inside Jenkins.
|
|
# http://jenkins.ceph.com/job/teuthology-pull-requests/
|
|
|
|
set -x
|
|
set -e
|
|
|
|
virtualenv --version
|
|
virtualenv --system-site-packages --distribute venv
|
|
. venv/bin/activate
|
|
venv/bin/pip install tox
|
|
tox -rv
|