Commit 008b5a22 authored by Feng Xiao's avatar Feng Xiao Committed by GitHub

Merge pull request #2254 from JasonLunn/patch-1

Use git clean before installing via bundler
parents 993d6040 9ec7a47e
......@@ -10,12 +10,14 @@ test_version() {
bash --login -c \
"rvm install $version && rvm use $version && rvm get head && \
which ruby && \
git clean -f && \
gem install bundler && bundle && \
rake test"
else
bash --login -c \
"rvm install $version && rvm use $version && \
which ruby && \
git clean -f && \
gem install bundler && bundle && \
rake test &&
cd ../conformance && make test_ruby"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment