File tree 2 files changed +24
-16
lines changed
2 files changed +24
-16
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
2
3
- before_install :
4
- sudo pip install codecov
5
-
6
3
after_success :
7
- codecov
4
+ - bash <(curl -s https:// codecov.io/bash)
Original file line number Diff line number Diff line change 1
- xtend -> Codecov.io
2
- =======
3
- | [ https://codecov.io/ ] [ 1 ] | [ @codecov ] [ 2 ] | [ [email protected] ] [ 3 ] |
4
- | ------------------------ | ------------- | --------------------- |
5
- =======
1
+ Codecov XTend Example
2
+ =====================
6
3
7
- > This repository serves as an ** Example** on how to use codecov uploader for xtend.
4
+ | [ https://codecov.io ] [ 1 ] | [ @codecov ] [ 2 ] | [ [email protected] ] [ 3 ] |
5
+ | ----------------------- | ------------- | --------------------- |
8
6
9
- ## Usage
7
+ This repository serves as an ** example ** on how to use [ Codecov Global ] [ 4 ] for XTend.
10
8
11
9
12
- #### Add JaCoCo plugin
10
+ ### Add Jacoco plugin
13
11
``` xml
14
12
<plugin >
15
13
<groupId >org.jacoco</groupId >
@@ -33,21 +31,34 @@ xtend -> Codecov.io
33
31
```
34
32
35
33
36
- # [ ![ travis-org ] ( https://avatars2.githubusercontent.com/u/639823?v=2&s=50 )] ( https://travis-ci.org ) Travis C
34
+ # Travis CI
37
35
38
36
Add to your ` .travis.yml ` file.
39
37
``` yml
40
38
language :
41
39
java
42
40
43
- before_install :
44
- sudo pip install codecov
41
+ after_success :
42
+ - bash <(curl -s https://codecov.io/bash)
43
+ ` ` `
44
+
45
+ > All other CI you can simply run ` bash <(curl -s https://codecov.io/bash)`.
46
+
47
+ # # Private Repos
48
+
49
+ Add to your `.travis.yml` file.
50
+ ` ` ` yml
51
+ env:
52
+ global:
53
+ - CODECOV_TOKEN=:uuid-repo-token
45
54
46
55
after_success:
47
- codecov
56
+ - bash <(curl -s https:// codecov.io/bash)
48
57
` ` `
49
58
59
+ View source and learn more about [Codecov Global Uploader][4]
50
60
51
61
[1] : https://codecov.io/
52
62
[2] : https://twitter.com/codecov
53
63
64
+ [4] : https://github.com/codecov/codecov-bash
You can’t perform that action at this time.
0 commit comments