From 00c36ece2055bff19c61632730cd04ec72739d1b Mon Sep 17 00:00:00 2001 From: Josh Haberman Date: Sat, 16 May 2015 14:47:34 -0700 Subject: Upload failing artifacts to S3 for debugging purposes. --- travis.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'travis.sh') diff --git a/travis.sh b/travis.sh index c1028f7..f2ac154 100755 --- a/travis.sh +++ b/travis.sh @@ -101,6 +101,20 @@ coverage_after_success() { coveralls --exclude dynasm --exclude tests --exclude upb/bindings/linux --gcov-options '\-lp' } +set -e +set -x + +if [ "$1" == "after_failure" ]; then + # Upload failing tree to S3. + curl -sL https://raw.githubusercontent.com/travis-ci/artifacts/master/install | bash + PATH="$PATH:$HOME/bin" + export ARTIFACTS_BUCKET=haberman-upb-travis-artifacts2 + ARCHIVE=failing-artifacts.tar.gz + tar zcvf $ARCHIVE $(git ls-files -o) + artifacts upload $ARCHIVE + exit +fi + if [ "$1" == "after_success" ] && [ "$UPB_TRAVIS_BUILD" != "coverage" ]; then # after_success is only used for coverage. exit @@ -117,9 +131,6 @@ export USER_CPPFLAGS="-UNDEBUG -DUPB_DEBUG_REFS -DUPB_THREAD_UNSAFE -g" # Enable verbose build. export Q= -set -e -set -x - # Make any compiler warning fail the build. export UPB_FAIL_WARNINGS=true -- cgit v1.2.3