From e499beab602d8d64a328ce2259ed9e2eddd2fb6e Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Mon, 23 Dec 2019 15:43:10 +0300 Subject: - combine codecov push --- .travis.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to '.travis.yml') 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: -- cgit v1.2.3 From b0c299387222c9a32b92a11abb30c85e5c7f4741 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Mon, 23 Dec 2019 15:49:22 +0300 Subject: - combine codecov push --- .travis.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 6e04e50e..f3955eb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,19 +29,19 @@ script: - go test ./service/health -race -v -coverprofile=health.txt -covermode=atomic after_success: - 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 + - 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: -- cgit v1.2.3