diff options
author | Wolfy-J <[email protected]> | 2019-12-23 15:43:10 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-12-23 15:43:10 +0300 |
commit | e499beab602d8d64a328ce2259ed9e2eddd2fb6e (patch) | |
tree | 75724a3ec2102702f957dd44ffbc2f2f3b4971e8 | |
parent | 7811cf537555f3fa39369e112e286477c26622e1 (diff) |
- combine codecov push
-rw-r--r-- | .travis.yml | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index e98795fb..6e04e50e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,17 +29,19 @@ script: - go test ./service/health -race -v -coverprofile=health.txt -covermode=atomic after_success: - - bash <(curl -s https://codecov.io/bash) -f lib.txt - - bash <(curl -s https://codecov.io/bash) -f util.txt - - bash <(curl -s https://codecov.io/bash) -f service.txt - - bash <(curl -s https://codecov.io/bash) -f env.txt - - bash <(curl -s https://codecov.io/bash) -f rpc.txt - - bash <(curl -s https://codecov.io/bash) -f http.txt - - bash <(curl -s https://codecov.io/bash) -f static.txt - - bash <(curl -s https://codecov.io/bash) -f limit.txt - - bash <(curl -s https://codecov.io/bash) -f headers.txt - - bash <(curl -s https://codecov.io/bash) -f metrics.txt - - bash <(curl -s https://codecov.io/bash) -f health.txt + curl https://codecov.io/bash -o codecov-bash + chmod +x codecov-bash + ./codecov-bash -f lib.txt + ./codecov-bash -f util.txt + ./codecov-bash -f service.txt + ./codecov-bash -f env.txt + ./codecov-bash -f rpc.txt + ./codecov-bash -f http.txt + ./codecov-bash -f static.txt + ./codecov-bash -f limit.txt + ./codecov-bash -f headers.txt + ./codecov-bash -f metrics.txt + ./codecov-bash -f health.txt jobs: include: |