From: Eric Haszlakiewicz Date: Wed, 8 Apr 2020 02:54:10 +0000 (+0000) Subject: I have NFC why osx fails when "set -e" is in effect, but leave it off and clean up... X-Git-Tag: json-c-0.14-20200419~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96bb3346500227ff8c04ae5c935b3989d099bf10;p=thirdparty%2Fjson-c.git I have NFC why osx fails when "set -e" is in effect, but leave it off and clean up the rest of the debuging code in the travis config. --- diff --git a/.travis.yml b/.travis.yml index fbc16391..2d10f92a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -124,17 +124,11 @@ before_install: fi before_script: - # Wait a while for output to flush :( - - set +e - - onexit() { sleep 20; }; trap onexit 0 - - pwd + # XXX osx on travis doesn't work w/ set -e, so turn it off :( + - set +e - mkdir -p build || echo "Failed to mkdir build" - - ls - cd build || echo "Failed to cd build" - - pwd - cmake .. || echo "Failed to run cmake" - - echo "After cmake" - - pwd script: - make