Skip to content

Commit 0396afa

Browse files
AppVeyor CI: enable
1 parent 1fd873c commit 0396afa

File tree

2 files changed

+70
-3
lines changed

2 files changed

+70
-3
lines changed

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ Suggests:
1313
graphics,
1414
tcltk,
1515
beepr,
16-
notifier,
1716
pbmcapply,
1817
plyr,
1918
progress,
20-
future (>= 1.15.0),
19+
future (>= 1.15.1),
2120
doFuture,
2221
future.apply,
2322
furrr,
24-
shiny
23+
shiny,
24+
notifier
2525
Remotes:
2626
gaborcsardi/notifier@d92b1b6
2727
URL: https://github.com/HenrikBengtsson/progressr

appveyor.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
#----------------------------------------------------------------
2+
# AppVeyor CI for R Packages
3+
# https://github.com/krlmlr/r-appveyor
4+
# Validator: https://ci.appveyor.com/tools/validate-yaml
5+
#----------------------------------------------------------------
6+
environment:
7+
_R_CHECK_FORCE_SUGGESTS_: false
8+
USE_RTOOLS: true
9+
10+
matrix:
11+
- R_VERSION: devel
12+
R_ARCH: x64
13+
14+
- R_VERSION: devel
15+
R_ARCH: i386
16+
17+
- R_VERSION: release
18+
R_ARCH: x64
19+
20+
init:
21+
ps: |
22+
$ErrorActionPreference = "Stop"
23+
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
24+
Import-Module '..\appveyor-tool.ps1'
25+
install:
26+
ps: |
27+
Bootstrap
28+
29+
cache:
30+
- C:\RLibrary -> appveyor.yml
31+
32+
build_script:
33+
- Rscript -e "c(physical = parallel::detectCores(logical = FALSE), logical = parallel::detectCores())"
34+
- echo Current directory=%CD%
35+
- travis-tool.sh install_r digest
36+
- travis-tool.sh install_r beepr, pbmcapply, plyr, progress
37+
- travis-tool.sh install_r future, doFuture, future.apply, furrr
38+
- travis-tool.sh install_r shiny
39+
- travis-tool.sh install_github gaborcsardi/notifier@d92b1b6
40+
test_script:
41+
- travis-tool.sh run_tests
42+
43+
after_test:
44+
- 7z a all-Rout.zip *.Rcheck\**\*.Rout *.Rcheck\**\*.fail
45+
46+
artifacts:
47+
- path: '*.Rcheck\**\*.log'
48+
name: Logs
49+
50+
- path: '*.Rcheck\**\*.out'
51+
name: Logs
52+
53+
- path: '*.Rcheck\**\*.fail'
54+
name: Logs
55+
56+
- path: '\*_*.tar.gz'
57+
name: Bits
58+
59+
- path: '\*_*.zip'
60+
name: Bits
61+
62+
- path: all-Rout.zip
63+
name: AllRout
64+
65+
on_failure:
66+
- 7z a failure.zip *.Rcheck\*
67+
- appveyor PushArtifact failure.zip

0 commit comments

Comments
 (0)