File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : java
22sudo : false # faster builds
3- env :
4- global :
5- - CODECOV_ENV=EXAMPLE
6- - EXAMPLE=Hello+World
73
84after_success :
95 - bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change @@ -33,18 +33,31 @@ Java -> Codecov.io
3333```
3434
3535
36- # [ ![ travis-org ] ( https://avatars2.githubusercontent.com/u/639823?v=2&s=50 )] ( https://travis-ci.org ) Travis C
36+ # Travis CI
3737
3838Add to your ` .travis.yml ` file.
3939``` yml
4040language :
4141 java
4242
43- before_install :
44- sudo pip install codecov
43+ after_success :
44+ - bash <(curl -s https://codecov.io/bash)
45+ ` ` `
46+
47+ > All other CI you can simply run ` bash <(curl -s https://codecov.io/bash)`.
48+
49+ # # Private Repos
50+
51+ Add to your `.travis.yml` file.
52+ ` ` ` yml
53+ language:
54+ java
55+ env:
56+ global:
57+ - CODECOV_TOKEN=:uuid-repo-token
4558
4659after_success:
47- codecov
60+ - bash <(curl -s https:// codecov.io/bash)
4861` ` `
4962
5063
You can’t perform that action at this time.
0 commit comments