File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed
Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,4 @@ inst/include/Rcpp/preprocessor
1010inst/include/Rcpp/sugar/functions/impl
1111vignettes/notyet
1212doxyfile
13+ .travis.yml
Original file line number Diff line number Diff line change 1+ # Sample .travis.yml for R projects.
2+ #
3+ # See https://github.com/craigcitro/r-travis
4+
5+ language : c
6+ script : ./travis-tool.sh run_tests
7+ before_install :
8+ - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
9+ - chmod 755 ./travis-tool.sh
10+ - ./travis-tool.sh bootstrap
11+ install :
12+ - ./travis-tool.sh r_install RUnit inline rbenchmark highlight
13+ notifications :
14+ email :
15+ on_success : change
16+ on_failure : change
17+
18+ # Also works but is slower as it needs devtools:
19+ # - ./travis-tool.sh install_deps
20+
21+ # Currently unused (and GSL used for illustration)
22+ # - ./travis-tool.sh aptget_install libgsl0-dev
23+
Original file line number Diff line number Diff line change 1+ 2013-11-05 Dirk Eddelbuettel <edd@debian.org>
2+
3+ * .travis.yml: Added to support continuous integration on github
4+
152013-10-28 Romain Francois <romain@r-enthusiasts.com>
26
37 * include/Rcpp/protection/Armor.h : Armor::operator SEXP has to be const
4- for it to work properly with wrap.
8+ for it to work properly with wrap.
59
6102013-10-27 Dirk Eddelbuettel <edd@debian.org>
711
You can’t perform that action at this time.
0 commit comments