Skip to content

Commit d16bc0c

Browse files
committed
Merge branch 'master' of github.com:dcdillon/RcppHoney
2 parents 492a10b + e5f6831 commit d16bc0c

File tree

2 files changed

+15
-18
lines changed

2 files changed

+15
-18
lines changed

.travis.yml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,23 @@ language: c
88

99
sudo: required
1010

11-
env:
12-
global:
13-
- R_BUILD_ARGS="--no-build-vignettes --no-manual"
14-
- R_CHECK_ARGS="--no-build-vignettes --no-manual --as-cran"
15-
11+
dist: trusty
12+
1613
before_install:
17-
## r-travis by Craig Citro et al
18-
- curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
19-
- chmod 755 ./travis-tool.sh
20-
- ./travis-tool.sh bootstrap
14+
- curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
15+
- chmod 755 ./travis-tool.sh
16+
- ./travis-tool.sh bootstrap
2117

2218
install:
23-
- ./travis-tool.sh install_github dcdillon/RcppHoney
19+
- ./travis-tool.sh install_aptget r-cran-rcpp
2420

2521
script:
26-
- true
27-
after_script:
28-
- ./travis-tool.sh dump_logs
22+
- ./travis-tool.sh run_tests
23+
24+
after_failure:
25+
- ./travis-tool.sh dump_logs
2926

3027
notifications:
31-
email:
32-
on_success: change
33-
on_failure: change
28+
email:
29+
on_success: change
30+
on_failure: change

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RcppHoney
1+
# RcppHoney ![Build Status](https://travis-ci.org/dcdillon/cpuaff.svg?branch=master)
22

33
### Description
44

@@ -70,7 +70,7 @@ Rcpp::NumericVector example_manually_hooked() {
7070
// RcppHoney::NumericVector and simply return it to R. These classes inherit from their
7171
// Rcpp counterparts and add a new constructor. The only copy of the data, in this case, is when
7272
// we assign our expression to retval. Since it is then a "native" R type, returning it is a
73-
// shallow copy. Alternatively we could simply write this as:
73+
// shallow copy. Alternatively we could write this as:
7474
// return Rcpp::wrap(1 + v + RcppHoney::log(v) - v - 1 + RcppHoney::sqrt(v) + -v2);
7575

7676
RcppHoney::NumericVector retval

0 commit comments

Comments
 (0)