Commit 9ec7a47e authored by Jason Lunn's avatar Jason Lunn Committed by GitHub

Use git clean before installing via bundler

parent 993d6040
...@@ -10,12 +10,14 @@ test_version() { ...@@ -10,12 +10,14 @@ test_version() {
bash --login -c \ bash --login -c \
"rvm install $version && rvm use $version && rvm get head && \ "rvm install $version && rvm use $version && rvm get head && \
which ruby && \ which ruby && \
git clean -f && \
gem install bundler && bundle && \ gem install bundler && bundle && \
rake test" rake test"
else else
bash --login -c \ bash --login -c \
"rvm install $version && rvm use $version && \ "rvm install $version && rvm use $version && \
which ruby && \ which ruby && \
git clean -f && \
gem install bundler && bundle && \ gem install bundler && bundle && \
rake test && rake test &&
cd ../conformance && make test_ruby" 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