Browse code

travis build

guangchuang yu authored on 11/10/2016 02:09:25
Showing 1 changed files

1 1
new file mode 100644
... ...
@@ -0,0 +1,37 @@
1
+## reference: http://docs.travis-ci.com/user/languages/r/
2
+
3
+language: r
4
+r:
5
+  - bioc-devel
6
+  
7
+cache: packages
8
+bioc_required: true
9
+
10
+os:
11
+  - linux
12
+  - osx
13
+
14
+
15
+apt_packages:
16
+  - libfftw3-dev
17
+
18
+env:
19
+  global:
20
+    - _R_CHECK_FORCE_SUGGESTS_=False
21
+    - R_LIBS="http://cran.rstudio.com"
22
+
23
+  
24
+after_failure:
25
+  - ./travis-tool.sh dump_logs
26
+
27
+r_github_packages:
28
+  - jimhester/covr
29
+
30
+after_success:
31
+- Rscript -e 'library(covr); codecov()'
32
+
33
+## notifications:
34
+##   email:
35
+##     on_success: change
36
+##     on_failure: change
37
+