Skip to content

[wip] Attempt to fix build #1769

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 31, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion script/custom_build_functions.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
function run_cukes {
bin/rake acceptance --trace
if is_mri_192_plus; then
bin/rake acceptance --trace
return $?
else
return 0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be worth echoing a warning explaining that this part of the build is being skipped and why.

fi
}

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