Have ci scripts abort if any command exits nonzero

This should fix scenarios where `rake bootstrap` fails due to bundler
failures and then some future command like `rake test:core` fails
because there's missing gems.

Fixes #5162
This commit is contained in:
Jordan Sissel 2016-05-19 02:07:33 -07:00 committed by Suyog Rao
parent 5c063fa3fd
commit bbd4d33682
3 changed files with 3 additions and 0 deletions

View file

@ -1,4 +1,5 @@
#!/bin/sh
set -e
# Since we are using the system jruby, we need to make sure our jvm process
# uses at least 1g of memory, If we don't do this we can get OOM issues when

View file

@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -e
##
# Note this setup needs a system ruby to be available, this can not

View file

@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -e
##
# Keep in mind to run ci/ci_setup.sh if you need to setup/clean up your environment before