From 7778488e60669947a78f310054ad03b676b273b0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ra=C3=BAl=20Mar=C3=ADn=20Rodr=C3=ADguez?= Date: Tue, 18 Jun 2019 15:33:32 +0000 Subject: [PATCH] Travis: Do not fail if the coverage upload fails In a previous commit I'd only fixed run_coverage git-svn-id: http://svn.osgeo.org/postgis/trunk@17536 b70326c6-7e19-0410-871a-916f4a2858ee --- ci/travis/run_garden.sh | 2 +- ci/travis/run_nowagyu.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/travis/run_garden.sh b/ci/travis/run_garden.sh index e1d9da2c1..630db78f8 100644 --- a/ci/travis/run_garden.sh +++ b/ci/travis/run_garden.sh @@ -11,4 +11,4 @@ LDFLAGS_STD="--coverage" make -j bash ./ci/travis/logbt -- make garden curl -S -f https://codecov.io/bash -o .github/codecov.bash -bash .github/codecov.bash +bash .github/codecov.bash || echo "Coverage report failed" diff --git a/ci/travis/run_nowagyu.sh b/ci/travis/run_nowagyu.sh index c12403e15..311a21444 100644 --- a/ci/travis/run_nowagyu.sh +++ b/ci/travis/run_nowagyu.sh @@ -15,4 +15,4 @@ LDFLAGS="--coverage" ./configure --without-wagyu CFLAGS="${CFLAGS}" CXXFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" bash ./ci/travis/logbt -- make -j check RUNTESTFLAGS=--verbose curl -S -f https://codecov.io/bash -o .github/codecov.bash -bash .github/codecov.bash +bash .github/codecov.bash || echo "Coverage report failed" -- 2.40.0