Browse code

test travis

GuangchuangYu authored on 09/08/2016 10:58:49
Showing 1 changed files

... ...
@@ -1,34 +1,35 @@
1 1
 ## reference: http://docs.travis-ci.com/user/languages/r/
2 2
 
3 3
 language: r
4
+r:
5
+  - devel
6
+  - bioc-devel
7
+  
8
+cache: packages
4 9
 bioc_required: true
5 10
 
6
-apt_packages:
7
-  - libfftw3-dev
8
-
9
-r_packages:
10
-  - ape
11
-  - phylobase
12
-  - colorspace
13
-  - grid
14
-  - ggplot2
15
-  - gridExtra
16
-  - jsonlite
17
-  - magrittr
18
-  - reshape2
19
-  - rmarkdown
20
-  - testthat
21
-  - knitr
22
-bioc_packages:
23
-  - Biostrings
24
-  - EBImage
25
-  - BiocStyle
11
+os:
12
+  - linux
13
+  - osx
14
+
15
+
16
+env:
17
+  global:
18
+    - _R_CHECK_FORCE_SUGGESTS_=False
19
+    - R_LIBS="http://cran.rstudio.com"
20
+
26 21
   
27 22
 after_failure:
28 23
   - ./travis-tool.sh dump_logs
29 24
 
30
-notifications:
31
-  email:
32
-    on_success: change
33
-    on_failure: change
25
+r_github_packages:
26
+  - jimhester/covr
27
+
28
+after_success:
29
+- Rscript -e 'library(covr); codecov()'
30
+
31
+## notifications:
32
+##   email:
33
+##     on_success: change
34
+##     on_failure: change
34 35