File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,6 @@ rxylib.CHECK_AND_BUILD_MacOSX.sh
17
17
18
18
# Test resources
19
19
.travis.yml
20
+ codecov.yml
21
+ appveyor.yml
20
22
Original file line number Diff line number Diff line change
1
+ # DO NOT CHANGE the "init" and "install" sections below
2
+ # Download script file from GitHub
3
+ init :
4
+ ps : |
5
+ $ErrorActionPreference = "Stop"
6
+ Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
7
+ Import-Module '..\appveyor-tool.ps1'
8
+ install :
9
+ ps : Bootstrap
10
+
11
+ # Adapt as necessary starting from here
12
+
13
+ build_script :
14
+ - travis-tool.sh install_deps
15
+
16
+ test_script :
17
+ - travis-tool.sh run_tests
18
+
19
+ on_failure :
20
+ - travis-tool.sh dump_logs
21
+
22
+ artifacts :
23
+ - path : ' *.Rcheck\**\*.log'
24
+ name : Logs
25
+
26
+ - path : ' *.Rcheck\**\*.out'
27
+ name : Logs
28
+
29
+ - path : ' *.Rcheck\**\*.fail'
30
+ name : Logs
31
+
32
+ - path : ' *.Rcheck\**\*.Rout'
33
+ name : Logs
34
+
35
+ - path : ' \*_*.tar.gz'
36
+ name : Bits
37
+
38
+ - path : ' \*_*.zip'
39
+ name : Bits
You can’t perform that action at this time.
0 commit comments