Skip to content

Commit

Permalink
updated travis and appveyor scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gluc committed Sep 17, 2016
1 parent 7036a67 commit 5fbd9e6
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
language: r
cache: packages
r:
- oldrel
- release
- devel

sudo: required
sudo: false

warnings_are_errors: true

Expand Down
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Version 0.2.9
- FIX: Removed warning (masking of formattable::currency by DiagrammeR::currency)
- UPDATE: Removed references to deprecated data.tree packages

## Version 0.2.8
- FIX: Added dependency on R 3.2
Expand Down
27 changes: 26 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,44 @@ init:
$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'
install:
ps: Bootstrap

# Adapt as necessary starting from here

cache:
- C:\RLibrary

environment:
global:
WARNINGS_ARE_ERRORS: 1

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: stable

- R_VERSION: patched


build_script:
- travis-tool.sh install_deps

test_script:
- travis-tool.sh run_tests

on_failure:
- travis-tool.sh dump_logs
- 7z a failure.zip *.Rcheck\*
- appveyor PushArtifact failure.zip

artifacts:
- path: '*.Rcheck\**\*.log'
Expand Down

0 comments on commit 5fbd9e6

Please sign in to comment.