[postgis-tickets] r17536 - Travis: Do not fail if the coverage upload fails
Raul
raul at rmr.ninja
Tue Jun 18 08:33:33 PDT 2019
Author: algunenano
Date: 2019-06-18 08:33:32 -0700 (Tue, 18 Jun 2019)
New Revision: 17536
Modified:
trunk/ci/travis/run_garden.sh
trunk/ci/travis/run_nowagyu.sh
Log:
Travis: Do not fail if the coverage upload fails
In a previous commit I'd only fixed run_coverage
Modified: trunk/ci/travis/run_garden.sh
===================================================================
--- trunk/ci/travis/run_garden.sh 2019-06-14 22:52:39 UTC (rev 17535)
+++ trunk/ci/travis/run_garden.sh 2019-06-18 15:33:32 UTC (rev 17536)
@@ -11,4 +11,4 @@
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"
Modified: trunk/ci/travis/run_nowagyu.sh
===================================================================
--- trunk/ci/travis/run_nowagyu.sh 2019-06-14 22:52:39 UTC (rev 17535)
+++ trunk/ci/travis/run_nowagyu.sh 2019-06-18 15:33:32 UTC (rev 17536)
@@ -15,4 +15,4 @@
./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"
More information about the postgis-tickets
mailing list