[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.
This commit is contained in:
Ray Speth 2019-02-04 14:55:07 -05:00
parent ebb93cb5a2
commit f385f48190

View file

@ -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