Skip to content

Commit 5e0634a

Browse files
committed
dont run acceptance step on 1.8.7 due to segfaults
1.8.7 is now segfaulting reliably for cucumber, and our smoke tests so we skip
1 parent 7bf78b2 commit 5e0634a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

script/custom_build_functions.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
function run_cukes {
2-
bin/rake acceptance --trace
2+
if is_mri_192_plus; then
3+
bin/rake acceptance --trace
4+
return $?
5+
else
6+
return 0
7+
fi
38
}
49

510
# rspec-rails depends on all of the other rspec repos. Conversely, none of the

0 commit comments

Comments
 (0)