File tree Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
2
sudo : false # faster builds
3
- env :
4
- global :
5
- - CODECOV_ENV=EXAMPLE
6
- - EXAMPLE=Hello+World
7
3
8
4
after_success :
9
5
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change @@ -33,18 +33,31 @@ Java -> Codecov.io
33
33
```
34
34
35
35
36
- # [ ![ travis-org ] ( https://avatars2.githubusercontent.com/u/639823?v=2&s=50 )] ( https://travis-ci.org ) Travis C
36
+ # Travis CI
37
37
38
38
Add to your ` .travis.yml ` file.
39
39
``` yml
40
40
language :
41
41
java
42
42
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
45
58
46
59
after_success:
47
- codecov
60
+ - bash <(curl -s https:// codecov.io/bash)
48
61
` ` `
49
62
50
63
You can’t perform that action at this time.
0 commit comments