Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit ddbb2d0

Browse files
committed
Drop old Ruby builds from Travis
1 parent ed3f3b1 commit ddbb2d0

File tree

2 files changed

+2
-42
lines changed

2 files changed

+2
-42
lines changed

.travis.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

script/functions.sh

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,7 @@ function run_cukes {
5353

5454
echo "${PWD}/bin/cucumber"
5555

56-
if is_mri_192; then
57-
# For some reason we get SystemStackError on 1.9.2 when using
58-
# the bin/cucumber approach below. That approach is faster
59-
# (as it avoids the bundler tax), so we use it on rubies where we can.
60-
bundle exec cucumber --strict
61-
elif is_jruby; then
56+
if is_jruby; then
6257
# For some reason JRuby doesn't like our improved bundler setup
6358
RUBYOPT="-I${PWD}/../bundle -rbundler/setup" \
6459
PATH="${PWD}/bin:$PATH" \
@@ -88,7 +83,7 @@ function run_spec_suite_for {
8883
echo "Running specs for $1"
8984
pushd ../$1
9085
unset BUNDLE_GEMFILE
91-
bundle_install_flags=`cat .travis.yml | grep bundler_args | tr -d '"' | grep -o " .*"`
86+
bundle_install_flags="--binstubs --standalone --without documentation --path ../bundle"
9287
travis_retry eval "(unset RUBYOPT; exec bundle install $bundle_install_flags)"
9388
run_specs_and_record_done
9489
popd

0 commit comments

Comments
 (0)