[postgis-tickets] r17509 - Travis: Do not fail if the coverage upload fails

Raul raul at rmr.ninja
Wed Jun 12 04:01:21 PDT 2019


Author: algunenano
Date: 2019-06-12 04:01:21 -0700 (Wed, 12 Jun 2019)
New Revision: 17509

Modified:
   trunk/ci/travis/run_coverage.sh
Log:
Travis: Do not fail if the coverage upload fails



Modified: trunk/ci/travis/run_coverage.sh
===================================================================
--- trunk/ci/travis/run_coverage.sh	2019-06-12 10:30:22 UTC (rev 17508)
+++ trunk/ci/travis/run_coverage.sh	2019-06-12 11:01:21 UTC (rev 17509)
@@ -9,5 +9,5 @@
 ./autogen.sh
 ./configure CFLAGS="${CFLAGS_COV}" LDFLAGS="${LDFLAGS_COV}" --enable-debug
 make -j check
-curl -S -f https://codecov.io/bash -o .github/codecov.bash
-bash .github/codecov.bash
+curl -S -f https://codecov.io/bash -o .github/codecov.bash || echo "Coverage report failed"
+bash .github/codecov.bash || echo "Coverage report failed"



More information about the postgis-tickets mailing list