~ubuntu-branches/ubuntu/trusty/r-cran-rcpparmadillo/trusty-proposed

« back to all changes in this revision

Viewing changes to .travis.yml

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2013-11-19 21:22:00 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20131119212200-kafi3myq8y1urtbo
Tags: 0.3.920.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Sample .travis.yml for R projects.
 
2
#
 
3
# See https://github.com/craigcitro/r-travis
 
4
#
 
5
# Running with default settings which for now means 'no manual, no vignettes'
 
6
# and checking '--as-cran'.
 
7
 
 
8
language: c
 
9
script: ./travis-tool.sh run_tests
 
10
before_install:
 
11
  - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
 
12
  - chmod 755 ./travis-tool.sh
 
13
  - ./travis-tool.sh bootstrap
 
14
install:
 
15
  - ./travis-tool.sh r_install RUnit Rcpp
 
16
after_script:
 
17
  - ./travis-tool.sh dump_logs
 
18
notifications:
 
19
  email:
 
20
    on_success: change
 
21
    on_failure: change
 
22
 
 
23
# Options used for building or testing your R package can be
 
24
# controlled by uncommenting one or both of the following; the values
 
25
# here are the defaults:
 
26
env:
 
27
  global:
 
28
    - R_BUILD_ARGS="--no-build-vignettes --no-manual"
 
29
    - R_CHECK_ARGS="--no-build-vignettes --no-manual --as-cran"
 
30
# See the travis docs for more information:
 
31
#   http://about.travis-ci.org/docs/user/build-configuration/#The-Build-Matrix
 
32
 
 
33
 
 
34
# Also works but is slower as it needs devtools:
 
35
# - ./travis-tool.sh install_deps
 
36
 
 
37
# Currently unused (and GSL used for illustration)
 
38
#  - ./travis-tool.sh aptget_install libgsl0-dev
 
39