... | ... |
@@ -1,30 +1,44 @@ |
1 |
-environment: |
|
2 |
- R_CHECK_ARGS: --no-manual |
|
3 |
- _R_CHECK_FORCE_SUGGESTS_: false |
|
4 |
- |
|
1 |
+# DO NOT CHANGE the "init" and "install" sections below |
|
2 |
+ |
|
3 |
+# Download script file from GitHub |
|
5 | 4 |
init: |
6 | 5 |
ps: | |
7 | 6 |
$ErrorActionPreference = "Stop" |
8 | 7 |
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1" |
9 | 8 |
Import-Module '..\appveyor-tool.ps1' |
10 | 9 |
|
11 |
- |
|
12 | 10 |
install: |
13 | 11 |
ps: Bootstrap |
14 | 12 |
|
13 |
+# Adapt as necessary starting from here |
|
14 |
+ |
|
15 | 15 |
build_script: |
16 | 16 |
- travis-tool.sh install_r base64 |
17 |
- - travis-tool.sh install_bioc BiocStyle Biostrings |
|
18 |
-## - travis-tool.sh install_bioc_deps |
|
19 |
- |
|
17 |
+ - travis-tool.sh install_bioc BiocStyle Biostrings |
|
18 |
+ - travis-tool.sh install_deps |
|
19 |
+ |
|
20 | 20 |
test_script: |
21 | 21 |
- travis-tool.sh run_tests |
22 | 22 |
|
23 | 23 |
on_failure: |
24 |
- - travis-tool.sh dump_logs |
|
24 |
+ - 7z a failure.zip *.Rcheck\* |
|
25 |
+ - appveyor PushArtifact failure.zip |
|
26 |
+ |
|
27 |
+artifacts: |
|
28 |
+ - path: '*.Rcheck\**\*.log' |
|
29 |
+ name: Logs |
|
30 |
+ |
|
31 |
+ - path: '*.Rcheck\**\*.out' |
|
32 |
+ name: Logs |
|
33 |
+ |
|
34 |
+ - path: '*.Rcheck\**\*.fail' |
|
35 |
+ name: Logs |
|
36 |
+ |
|
37 |
+ - path: '*.Rcheck\**\*.Rout' |
|
38 |
+ name: Logs |
|
25 | 39 |
|
26 |
-## notifications: |
|
27 |
-## email: |
|
28 |
-## on_success: change |
|
29 |
-## on_failure: change |
|
40 |
+ - path: '\*_*.tar.gz' |
|
41 |
+ name: Bits |
|
30 | 42 |
|
43 |
+ - path: '\*_*.zip' |
|
44 |
+ name: Bits |