From f385f48190b826bf1ffdebb086a36665c0e9c925 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 4 Feb 2019 14:55:07 -0500 Subject: [PATCH] [CI] Change Codecov to use Linux build instead of macOS Something changed such that the macOS Travis builds are no long able to upload coverage data to Codecov. However, uploading from the Linux builds instead seems to work fine. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e5b061bbf..54364c6fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -77,6 +77,6 @@ script: | scons test fi after_success: | - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then + if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash <(curl -s https://codecov.io/bash) fi