Permalink
Please sign in to comment.
24
.travis.yml
| @@ -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