-
Notifications
You must be signed in to change notification settings - Fork 29
/
appveyor.yml
97 lines (78 loc) · 2.56 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# DO NOT CHANGE the "init" and "install" sections below
# Download script file from GitHub
init:
ps: |
$ErrorActionPreference = "Stop"
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
Import-Module '..\appveyor-tool.ps1'
branches:
only:
- master
- dev
version: 1.0.{build}
image:
- Visual Studio 2017 # to have Docker
#- Ubuntu # https://stefanscherer.github.io/use-appveyor-to-build-multi-arch-docker-image/
install:
- ps: Bootstrap
# based on https://github.com/pypa/pip/blob/master/.appveyor.yml
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
- "python -m pip install --upgrade --disable-pip-version-check pip setuptools wheel"
- "python -m pip install docker"
- Rscript -e "install.packages('reticulate', repos = 'https://cloud.r-project.org')"
cache:
- C:\RLibrary
- C:\Program Files (x86)\Pandoc\
environment:
global:
NOT_CRAN: true
# env vars that may need to be set, at least temporarily, from time to time
# see https://github.com/krlmlr/r-appveyor#readme for details
USE_RTOOLS: true
# R_REMOTES_STANDALONE: true
BIOC_USE_DEVEL: FALSE
PYTHON: "C:\\Python36-x64"
# Do not build/test vignettes, because stevedore is missing
R_BUILD_ARGS: "--no-manual --no-build-vignettes"
R_CHECK_ARGS: "--no-manual --ignore-vignettes" # --as-cran
matrix:
- R_VERSION: release
WARNINGS_ARE_ERRORS: 0
#- R_VERSION: devel
# WARNINGS_ARE_ERRORS: ""
matrix:
fast_finish: true
build_script:
- docker --version
- travis-tool.sh install_bioc BiocGenerics
- travis-tool.sh install_deps
# https://github.com/krlmlr/r-appveyor/issues/82#issuecomment-261695154
before_test:
- ps: >-
if (-Not (Test-Path "C:\Program Files (x86)\Pandoc\")) {
cinst pandoc --no-progress
}
- ps: $env:Path += ";C:\Program Files (x86)\Pandoc\"
- pandoc -v
# Doesn't work yet: https://github.com/o2r-project/containerit/issues/151
#- Rscript -e "stevedore::docker_available(); stevedore::docker_client()$api_version()"
test_script:
- Rscript -e "devtools::test()" # run tests beforehand to see full output
- travis-tool.sh run_tests
on_failure:
- 7z a failure.zip *.Rcheck\*
- appveyor PushArtifact failure.zip
artifacts:
- path: '*.Rcheck\**\*.log'
name: Logs
- path: '*.Rcheck\**\*.out'
name: Logs
- path: '*.Rcheck\**\*.fail'
name: Logs
- path: '*.Rcheck\**\*.Rout'
name: Logs
- path: '\*_*.tar.gz'
name: Bits
- path: '\*_*.zip'
name: Bits