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

Commit 202f253

Browse files
committed
Drop old ruby conditional branch
1 parent 9160514 commit 202f253

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

script/custom_build_functions.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@ function run_cukes {
22
if [ -d features ]; then
33
echo "${PWD}/bin/cucumber"
44

5-
if is_mri_192; then
6-
# For some reason we get SystemStackError on 1.9.2 when using
7-
# the bin/cucumber approach below. That approach is faster
8-
# (as it avoids the bundler tax), so we use it on rubies where we can.
9-
bundle exec cucumber --strict
10-
elif is_jruby; then
5+
if is_jruby; then
116
echo "WARNING: Cucumber is skipped on JRuby on rspec-core due to" \
127
"excessive build times (>45 minutes) causing timeouts on Travis"
138
return 0

0 commit comments

Comments
 (0)