Diff of /appveyor.yml [000000] .. [f2e496]

Switch to unified view

a b/appveyor.yml
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
  - 7z a failure.zip *.Rcheck\*
23
  - appveyor PushArtifact failure.zip
24
25
artifacts:
26
  - path: '*.Rcheck\**\*.log'
27
    name: Logs
28
29
  - path: '*.Rcheck\**\*.out'
30
    name: Logs
31
32
  - path: '*.Rcheck\**\*.fail'
33
    name: Logs
34
35
  - path: '*.Rcheck\**\*.Rout'
36
    name: Logs
37
38
  - path: '\*_*.tar.gz'
39
    name: Bits
40
41
  - path: '\*_*.zip'
42
    name: Bits