Skip to content

Commit

Permalink
enable continuous integration via craigcitro/r-travis
Browse files Browse the repository at this point in the history
- ignore .Rhistory file
- mute notification mails
- don't install assertthat
- test all branches except those whose name is ending with -expt
  • Loading branch information
Kirill Müller committed Nov 1, 2013
1 parent 269cfb7 commit 25fa9cd
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Expand Up @@ -4,3 +4,4 @@ doc
man-roxygen
^.*\.Rproj$
^\.Rproj\.user$
^\.travis\.yml$
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
*.so
.Rproj.user
/.Rhistory
24 changes: 24 additions & 0 deletions .travis.yml
@@ -0,0 +1,24 @@
# 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
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 25fa9cd

Please sign in to comment.