Permalink
Newer
100644
42 lines (29 sloc)
795 Bytes
|
|
||
| 1 | # DO NOT CHANGE the "init" and "install" sections below | |
| 2 | ||
| 3 | # Download script file from GitHub | |
| 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 | # Adapt as necessary starting from here | |
| 14 | ||
| 15 | build_script: | |
| 16 | - travis-tool.sh install_deps | |
| 17 | ||
| 18 | test_script: | |
| 19 | - travis-tool.sh run_tests | |
| 20 | ||
|
|
||
| 21 | on_failure: | |
|
|
||
| 22 | - travis-tool.sh dump_logs | |
| 23 | ||
| 24 | artifacts: | |
| 25 | - path: '*.Rcheck\**\*.log' | |
| 26 | name: Logs | |
| 27 | ||
| 28 | - path: '*.Rcheck\**\*.out' | |
| 29 | name: Logs | |
| 30 | ||
| 31 | - path: '*.Rcheck\**\*.fail' | |
| 32 | name: Logs | |
| 33 | ||
| 34 | - path: '*.Rcheck\**\*.Rout' | |
| 35 | name: Logs | |
| 36 | ||
| 37 | - path: '\*_*.tar.gz' | |
| 38 | name: Bits | |
| 39 | ||
| 40 | - path: '\*_*.zip' | |
| 41 | name: Bits |