File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11
11
global :
12
12
- DOCKER_OPTS="--rm -ti -v $(pwd):/mnt -w /mnt"
13
13
DOCKER_CNTR="rcpp/ci"
14
- R_BLD_CHK_OPTS="--no-vignettes --no-manual"
14
+ R_BLD_OPTS="--no-build-vignettes --no-manual"
15
+ R_CHK_OPTS="--no-vignettes --no-manual"
15
16
16
17
before_install :
17
18
- docker pull ${DOCKER_CNTR}
18
19
- docker run ${DOCKER_OPTS} ${DOCKER_CNTR} r -p -e 'sessionInfo()'
19
20
20
21
install :
21
- - docker run ${DOCKER_OPTS} ${DOCKER_CNTR} R CMD build ${R_BLD_CHK_OPTS } .
22
+ - docker run ${DOCKER_OPTS} ${DOCKER_CNTR} R CMD build ${R_BLD_OPTS } .
22
23
23
24
script :
24
- - docker run ${DOCKER_OPTS} ${DOCKER_CNTR} R CMD check ${R_BLD_CHK_OPTS } Rcpp_*.tar.gz
25
+ - docker run ${DOCKER_OPTS} ${DOCKER_CNTR} R CMD check ${R_CHK_OPTS } Rcpp_*.tar.gz
25
26
26
27
after_success :
27
28
- docker run ${DOCKER_OPTS} ${DOCKER_CNTR} r -l covr -e 'codecov()'
Original file line number Diff line number Diff line change 1
1
2018-09-28 Dirk Eddelbuettel <
[email protected] >
2
2
3
- * .travis.yml (env): Correct R CMD check option to --no-vignettes
3
+ * .travis.yml (env): Set distinct build and check options to skip
4
+ tests of vignettes
4
5
5
6
2018-09-27 Dirk Eddelbuettel <
[email protected] >
6
7
You can’t perform that action at this time.
0 commit comments