Permalink
Browse files

Travis: use r-builder

  • Loading branch information...
1 parent 4663d6a commit bc95c252bf569d5bccc393d8030be400a8399fd1 @gaborcsardi gaborcsardi committed May 7, 2015
Showing with 17 additions and 7 deletions.
  1. +17 −7 .travis.yml
View
@@ -1,21 +1,31 @@
# Sample .travis.yml for R projects from https://github.com/craigcitro/r-travis # Sample .travis.yml for R projects from https://github.com/craigcitro/r-travis
language: c language: c
+sudo: required
before_install: before_install:
- - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh + - curl -OL https://raw.githubusercontent.com/metacran/r-builder/master/pkg-build.sh
- - chmod 755 ./travis-tool.sh + - chmod 755 pkg-build.sh
- - ./travis-tool.sh bootstrap + - ./pkg-build.sh bootstrap
install: install:
- - ./travis-tool.sh install_deps + - ./pkg-build.sh install_deps
-script: ./travis-tool.sh run_tests +script:
+ - ./pkg-build.sh run_tests
after_failure: after_failure:
- - ./travis-tool.sh dump_logs + - ./pkg-build.sh dump_logs
notifications: notifications:
email: email:
on_success: change on_success: change
- on_failure: change + on_failure: always
+
+env:
+ matrix:
+ - RVERSION=oldrel
+ - RVERSION=release
+ - RVERSION=devel
+ global:
+ - NOT_CRAN=1

0 comments on commit bc95c25

Please sign in to comment.