diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-02-07 17:54:46 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-02-08 17:23:01 -0800 |
commit | 5ed57567b8b75b6fa26bcbb3d1bee6d695a1186e (patch) | |
tree | 4f9d740ff89fa78e83805a24f276f30372a2969f /tools/jenkins | |
parent | ef8cf30cc4a1a8e415384bc19d41cd919120824c (diff) |
rvm use is not necessary
Diffstat (limited to 'tools/jenkins')
-rwxr-xr-x | tools/jenkins/docker_run_tests.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/jenkins/docker_run_tests.sh b/tools/jenkins/docker_run_tests.sh index 12874386a3..282b857351 100755 --- a/tools/jenkins/docker_run_tests.sh +++ b/tools/jenkins/docker_run_tests.sh @@ -38,16 +38,11 @@ export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer-3.5 # Ensure that programs depending on current-user-ownership of cache directories # are satisfied (it's being mounted from outside the image). -chown `whoami` $XDG_CACHE_HOME +chown $(whoami) $XDG_CACHE_HOME mkdir -p /var/local/git git clone --recursive /var/local/jenkins/grpc /var/local/git/grpc -if [ -x "$(command -v rvm)" ] -then - rvm use ruby-2.1 -fi - mkdir -p reports exit_code=0 |