Browse Source

appveyor

master
boB Rudis 7 years ago
parent
commit
982b0e50d0
No known key found for this signature in database GPG Key ID: 2A514A4997464560
  1. 3
      .Rbuildignore
  2. 54
      appveyor.yml

3
.Rbuildignore

@ -8,4 +8,5 @@
^\.codecov\.yml$
^README_files$
^doc$
^java$
^java$
^appveyor\.yml$

54
appveyor.yml

@ -0,0 +1,54 @@
# 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'
environment:
global:
WARNINGS_ARE_ERRORS: 1
USE_RTOOLS: true
JAVA_HOME:
matrix:
- R_VERSION: devel
GCC_PATH: mingw_32
- R_VERSION: devel
R_ARCH: x64
GCC_PATH: mingw_64
- R_VERSION: release
R_ARCH: x64
- R_VERSION: oldrel
RTOOLS_VERSION: 32
CRAN: http://cran.rstudio.com
install:
ps: Bootstrap
build_script:
- travis-tool.sh install_deps
test_script:
- travis-tool.sh run_tests
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
Loading…
Cancel
Save