-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
74 lines (67 loc) · 1.58 KB
/
.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
language: r
latex: true
warnings_are_errors: TRUE
r_check_args: '--ignore-vignettes'
r_build_args: '--no-build-vignettes'
cache:
- packages
- ccache
addons:
apt:
packages:
- libudunits2-dev
- libgdal-dev
- libproj-dev
- libv8-dev
- libgit2-dev
env:
- _R_CHECK_FORCE_SUGGESTS_=true
_R_CHECK_CRAN_INCOMING_=true
NOT_CRAN=true
repos:
CRAN: https://cloud.r-project.org
ropensci: http://packages.ropensci.org
matrix:
include:
- r: release
r_packages:
- Rcpp
- RcppEigen
- mvtnorm
- rstan
- StanHeaders
- LaplacesDemon
- logspline
- testthat
- remotes
- knitr
- rmarkdown
- coda
- rstantools
- bridgesampling
- BH
- devtools
- r: devel
r_packages:
- Rcpp
- RcppEigen
- mvtnorm
- rstan
- StanHeaders
- LaplacesDemon
- logspline
- testthat
- devtools
- remotes
- knitr
- rmarkdown
- coda
- rstantools
- bridgesampling
- BH
before_install:
- mkdir -p ~/.R
- echo "CXX14FLAGS=-O3 -mtune=native -march=native -Wno-unused-variable -Wno-unused-function -Wno-macro-redefined" >> ~/.R/Makevars
- echo "CXX14=g++ -std=c++1y -fext-numeric-literals -fPIC" >> ~/.R/Makevars
- echo "CXX17FLAGS=-O3 -mtune=native -march=native -Wno-unused-variable -Wno-unused-function -Wno-macro-redefined" >> ~/.R/Makevars
- echo "CXX17=g++ -std=c++1y -fext-numeric-literals -fPIC" >> ~/.R/Makevars