Commit information:
Commit id: 3f8a3d64de3303ec40558de2ea45e63a3f27f5a1
travis
Committed by: GuangchuangYu
Author Name: GuangchuangYu
Commit date: 2015-02-03 15:45:23 +0800
Author date: 2015-02-03 15:45:23 +0800
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ggtree@98988 bc3139a8-67e5-0310-9ffc-ced21a209358
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 |