Browse code

travis

GuangchuangYu authored on 03/02/2015 07:45:23
Showing 2 changed files

1 1
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+.travis.yml
0 2
new file mode 100644
... ...
@@ -0,0 +1,27 @@
1
+# Sample .travis.yml for R projects.
2
+#
3
+# See README.md for instructions, or for more configuration options,
4
+# see the wiki:
5
+#   https://github.com/craigcitro/r-travis/wiki
6
+
7
+language: c
8
+
9
+before_install:
10
+  - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
11
+  - chmod 755 ./travis-tool.sh
12
+  - ./travis-tool.sh bootstrap
13
+env:
14
+  global:
15
+    - BIOC_USE_DEVEL="TRUE"
16
+install:
17
+  - ./travis-tool.sh install_bioc_deps
18
+  - ./travis-tool.sh install_deps
19
+script: ./travis-tool.sh run_tests
20
+
21
+after_failure:
22
+  - ./travis-tool.sh dump_logs
23
+
24
+notifications:
25
+  email:
26
+    on_success: change
27
+    on_failure: change