forked from dselivanov/text2vec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
23 lines (19 loc) · 823 Bytes
/
.travis.yml
File metadata and controls
23 lines (19 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: r
warnings_are_errors: true
sudo: required
env:
global:
- R_BUILD_ARGS="--no-build-vignettes --no-manual"
- R_CHECK_ARGS="--no-build-vignettes --no-manual"
- _R_CHECK_FORCE_SUGGESTS_=FALSE
before_install:
- curl -OL http://raw.github.com/eddelbuettel/r-travis/master/scripts/travis-tool.sh
- chmod 755 ./travis-tool.sh
- ./travis-tool.sh bootstrap
- sudo add-apt-repository -y ppa:edd/misc
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- ./travis-tool.sh install_aptget r-cran-rcpp g++-4.9
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 50
- Rscript -e "install.packages(c('devtools', 'RcppParallel', 'testthat', 'readr', 'rmarkdown', 'knitr', 'iterators', 'glmnet'), repos='http://cran.us.r-project.org')"