-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
executable file
·55 lines (48 loc) · 898 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Some references
# https://github.com/ropenscilabs/umapr/blob/master/.travis.yml
language: R
sudo: true
cache: packages
os:
- linux
addons:
apt:
packages:
- cmake
- glpk-utils
- libmpfr-dev
- xorg
- libx11-dev
- libglu1-mesa-dev
- libfreetype6-dev
- libgdal-dev
- libgeos-dev
- gdal-bin
- proj-bin
- libproj-dev
- cargo
- libstd-rust-dev
- rust-gdb
- rustc
r:
- release
r-packages:
- ADMM
- MASS
- CVXR
- Rcpp
- RcppDE
- RcppDist
- RcppArmadillo
- Rdpack
- RSpectra
- maotai
- knitr
- rmarkdown
- Rdpack
env:
global:
- R_CHECK_ARGS="--no-build-vignettes --no-manual --ignore-vignettes --no-examples"
- R_BUILD_ARGS="--no-build-vignettes"
warnings_are_errors: false