3 | 4 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,27 @@ |
1 |
+environment: |
|
2 |
+ R_CHECK_ARGS: --no-manual |
|
3 |
+ |
|
4 |
+init: |
|
5 |
+ ps: | |
|
6 |
+ $ErrorActionPreference = "Stop" |
|
7 |
+ Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1" |
|
8 |
+ Import-Module '..\appveyor-tool.ps1' |
|
9 |
+ |
|
10 |
+install: |
|
11 |
+ ps: Bootstrap |
|
12 |
+ |
|
13 |
+build_script: |
|
14 |
+ - travis-tool.sh install_bioc_deps |
|
15 |
+ - travis-tool.sh install_deps |
|
16 |
+ |
|
17 |
+test_script: |
|
18 |
+ - travis-tool.sh run_tests |
|
19 |
+ |
|
20 |
+on_failure: |
|
21 |
+ - travis-tool.sh dump_logs |
|
22 |
+ |
|
23 |
+notifications: |
|
24 |
+ email: |
|
25 |
+ on_success: change |
|
26 |
+ on_failure: change |
|
27 |
+ |