Skip to content

Commit

Permalink
Activate travis
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Dec 4, 2013
1 parent 68c0a2c commit b54a0fd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
^.*\.Rproj$
^\.Rproj\.user$
^\.travis\.yml$
29 changes: 29 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Sample .travis.yml for R projects.
#
# See README.md for instructions.

language: c
# To build on OSX, switch the previous line to
# language: objective-c
script: ./travis-tool.sh run_tests

env:
- global:
- WARNINGS_ARE_ERRORS=1

before_install:
- curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
- chmod 755 ./travis-tool.sh
- ./travis-tool.sh bootstrap
install:
- ./travis-tool.sh install_deps
# Configuration options below this line are suggested options.
notifications:
email:
on_success: change
on_failure: change
# One can also restrict the branches to test, see
# http://about.travis-ci.org/docs/user/build-configuration/#Specify-branches-to-build
branches:
except:
- /-expt$/

0 comments on commit b54a0fd

Please sign in to comment.