File tree 1 file changed +2
-5
lines changed 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,12 @@ jobs:
15
15
allow_failures :
16
16
- env : SPRING_PROFILES_ACTIVE=postgres
17
17
18
- # * set -e is needed to fail fast.
19
- # See https://github.com/travis-ci/travis-ci/issues/10480
20
- # * travis_terminate allows us to gracefully handle "set -e" shutdown.
21
- # See https://travis-ci.community/t/log-are-truncated-when-my-script-exits-abnormally/5878
18
+ # travis_terminate is used for getting a fail-fast behavior and don't abort the execution of the Travis scripts.
19
+ # See https://travis-ci.community/t/log-are-truncated-when-my-script-exits-abnormally/5878
22
20
#
23
21
# @todo #1054 Unify PostgreSQL version/configuration between Travis and docker-compose
24
22
before_script :
25
23
- trap 'travis_terminate 1' ERR;
26
- set -e;
27
24
if [ "$SPRING_PROFILES_ACTIVE" = 'travis' ]; then
28
25
mysql -u root -e 'CREATE DATABASE mystamps CHARACTER SET utf8;';
29
26
mkdir -p /tmp/uploads /tmp/preview;
You can’t perform that action at this time.
0 commit comments