-
Notifications
You must be signed in to change notification settings - Fork 19
/
.travis.yml
41 lines (35 loc) · 903 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
language: r
cache: packages
latex: false
warnings_are_errors: false
r_build_args: --no-build-vignettes
r_check_args: --as-cran --ignore-vignettes
env:
global:
- _R_CHECK_FORCE_SUGGESTS_: false
- R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
r_packages:
- covr
# This is the minimal set of R packages needed to run "R CMD check" on
# the package.
- assertthat
- abind
- mvtnorm
- Rcpp
- RcppArmadillo
- RcppGSL
- rmeta
- plyr
- testthat
- softImpute
r_github_packages: stephens999/ashr
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get -q update
- sudo apt-get install -y libgsl-dev libomp-dev libgfortran-6-dev gfortran gcc-6 g++-6
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6
after_success:
- Rscript -e 'covr::codecov()'
branches:
only:
- master