Skip to content

Commit 598a585

Browse files
committed
wip
1 parent 4c12299 commit 598a585

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
language: java
22
sudo: false # faster builds
3-
env:
4-
global:
5-
- CODECOV_ENV=EXAMPLE
6-
- EXAMPLE=Hello+World
73

84
after_success:
95
- bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff 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

3838
Add to your `.travis.yml` file.
3939
```yml
4040
language:
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
4659
after_success:
47-
codecov
60+
- bash <(curl -s https://codecov.io/bash)
4861
```
4962

5063

0 commit comments

Comments
 (0)