From: Frantisek Sumsal Date: Wed, 10 Jun 2020 15:48:14 +0000 (+0200) Subject: travis: replace set (+|-)e with travis_terminate X-Git-Tag: v246-rc1~164^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a573f2b91c3b04f46994a193f4a830d9d967030;p=thirdparty%2Fsystemd.git travis: replace set (+|-)e with travis_terminate It looks nicer and works around https://travis-ci.community/t/exit-0-cannot-exit-successfully-on-arm/5731/ --- diff --git a/.travis.yml b/.travis.yml index e57c199077e..6b50c9d9fdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,10 +75,7 @@ jobs: install: - $CI_MANAGERS/debian.sh SETUP script: - - set -e - # Build systemd - - $CI_MANAGERS/debian.sh RUN - - set +e + - $CI_MANAGERS/debian.sh RUN || travis_terminate 1 after_script: - $CI_MANAGERS/debian.sh CLEANUP @@ -94,9 +91,7 @@ jobs: install: - $CI_MANAGERS/debian.sh SETUP script: - - set -e - - $CI_MANAGERS/debian.sh RUN_ASAN - - set +e + - $CI_MANAGERS/debian.sh RUN_ASAN || travis_terminate 1 after_script: - $CI_MANAGERS/debian.sh CLEANUP @@ -112,9 +107,7 @@ jobs: install: - $CI_MANAGERS/debian.sh SETUP script: - - set -e - - $CI_MANAGERS/debian.sh RUN_CLANG - - set +e + - $CI_MANAGERS/debian.sh RUN_CLANG || travis-travis_terminate 1 after_script: - $CI_MANAGERS/debian.sh CLEANUP @@ -130,9 +123,7 @@ jobs: install: - $CI_MANAGERS/debian.sh SETUP script: - - set -e - - $CI_MANAGERS/debian.sh RUN_CLANG_ASAN - - set +e + - $CI_MANAGERS/debian.sh RUN_CLANG_ASAN || travis_terminate 1 after_script: - $CI_MANAGERS/debian.sh CLEANUP