Skip to content

Commit

Permalink
Merge pull request #152 from lawinslow/master
Browse files Browse the repository at this point in the history
Try switching metacran builder
  • Loading branch information
Luke Winslow committed Dec 30, 2015
2 parents ca92a28 + d6e7488 commit b2f0c80
Showing 1 changed file with 24 additions and 12 deletions.
36 changes: 24 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
# Sample .travis.yml for R projects.
#
# See README.md for instructions, or for more configuration options,
# see the wiki:
# https://github.com/craigcitro/r-travis/wiki
## .travis.yml file for use with metacran/r-builder
## See https://github.com/metacran/r-builder for details.

language: r

env:
global:
- R_BUILD_ARGS=" "
- R_CHECK_ARGS="--as-cran"
- NOT_CRAN="true"
language: c
sudo: required

before_install:
- curl -OL https://raw.githubusercontent.com/metacran/r-builder/master/pkg-build.sh
- chmod 755 pkg-build.sh
- ./pkg-build.sh bootstrap

install:
- ./pkg-build.sh install_deps

script:
- ./pkg-build.sh run_tests

after_failure:
- ./pkg-build.sh dump_logs

notifications:
email:
on_success: change
on_failure: change

env:
matrix:
- RVERSION=oldrel
- RVERSION=release
- RVERSION=devel

0 comments on commit b2f0c80

Please sign in to comment.