Skip to content

Commit

Permalink
Update evergreen test script
Browse files Browse the repository at this point in the history
  • Loading branch information
estolfo committed Jun 6, 2017
1 parent 701e46c commit 2239d89
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .evergreen/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,20 @@ export CI=evergreen
export JRUBY_OPTS="--server -J-Xms512m -J-Xmx1G"

source ~/.rvm/scripts/rvm

# Don't errexit because this may call scripts which error
set +o errexit
rvm use $RVM_RUBY
set -o errexit

# Ensure we're using the right ruby
python - <<EOH
ruby = "${RVM_RUBY}".split("-")[0]
version = "${RVM_RUBY}".split("-")[1]
assert(ruby in "`ruby --version`")
assert(version in "`ruby --version`")
EOH

gem install bundler

if [ "$DRIVER" == "master" ]; then
Expand Down

0 comments on commit 2239d89

Please sign in to comment.