mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
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:
parent
5c063fa3fd
commit
bbd4d33682
3 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
##
|
||||
# Note this setup needs a system ruby to be available, this can not
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue