From: Eric Haszlakiewicz Date: Wed, 8 Apr 2020 02:28:02 +0000 (+0000) Subject: Another attempt at debugging the travis osx build, this time just ignore errors. X-Git-Tag: json-c-0.14-20200419~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a86ae1df9afa07d363fc117c631ac06727b534c3;p=json-c Another attempt at debugging the travis osx build, this time just ignore errors. --- diff --git a/.travis.yml b/.travis.yml index bae9bfe..5c2f416 100644 --- a/.travis.yml +++ b/.travis.yml @@ -126,9 +126,12 @@ before_install: before_script: # Wait a while for output to flush :( - onexit() { sleep 20; }; trap onexit 0 - - mkdir -p build || (echo "Failed to mkdir build" ; false) - - cd build || (echo "Failed to cd build" ; false) - - cmake .. || (echo "Failed to run cmake"; false) + - pwd + - 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