Skip to content

Commit 781733c

Browse files
committed
use travis retry on 187 for acceptance specs due to seg faults
1 parent f7c3c37 commit 781733c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

script/custom_build_functions.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1+
function travis_retry_on_187 {
2+
if is_mri_192_plus; then
3+
"$@"
4+
else
5+
travis_retry "$@"
6+
fi
7+
return $?
8+
}
9+
110
function run_cukes {
2-
bin/rake acceptance --trace
11+
travis_retry_on_187 bin/rake acceptance --trace
312
}
413

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

0 commit comments

Comments
 (0)