We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46bad13 commit 747486aCopy full SHA for 747486a
.travis.yml
@@ -16,8 +16,10 @@ jobs:
16
- env: SPRING_PROFILES_ACTIVE=postgres
17
18
# @todo #1054 Unify PostgreSQL version/configuration between Travis and docker-compose
19
+# set -e is needed to fail fast. See https://github.com/travis-ci/travis-ci/issues/10480
20
before_script:
- - if [ "$SPRING_PROFILES_ACTIVE" = 'travis' ]; then
21
+ - set -e;
22
+ if [ "$SPRING_PROFILES_ACTIVE" = 'travis' ]; then
23
mysql -u root -e 'CREATE DATABASE mystamps CHARACTER SET utf8;';
24
mkdir -p /tmp/uploads /tmp/preview;
25
cp src/main/resources/test/test.png /tmp/uploads/1.png;
0 commit comments