File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,18 @@ function is_mri_192 {
33
33
fi
34
34
}
35
35
36
+ function is_mri_193 {
37
+ if is_mri; then
38
+ if ruby -e " exit(RUBY_VERSION == '1.9.3')" ; then
39
+ return 0
40
+ else
41
+ return 1
42
+ fi
43
+ else
44
+ return 1
45
+ fi
46
+ }
47
+
36
48
function is_mri_192_plus {
37
49
if is_mri; then
38
50
if ruby -e " exit(RUBY_VERSION.to_f > 1.8)" ; then
Original file line number Diff line number Diff line change @@ -29,7 +29,11 @@ if style_and_lint_enforced; then
29
29
fi
30
30
31
31
if is_mri; then
32
- fold " one-by-one specs" run_specs_one_by_one
32
+ # As of 2019-09-24 this causes a huge log due to a cicular dependency
33
+ # disable for now
34
+ if ! is_mri_193; then
35
+ fold " one-by-one specs" run_specs_one_by_one
36
+ fi
33
37
run_all_spec_suites
34
38
else
35
39
echo " Skipping the rest of the build on non-MRI rubies"
You can’t perform that action at this time.
0 commit comments