forked from dynverse/dynmethods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis_init1.yml
36 lines (36 loc) · 985 Bytes
/
.travis_init1.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
language: r
sudo: required
dist: trusty
cache:
timeout: 2000
apt: true
directories:
- $HOME/.cache/pip
- $HOME/R/Library
warnings_are_errors: false
env:
global:
- R_MAX_NUM_DLLS=250
- _R_CHECK_FORCE_SUGGESTS_="FALSE"
addons:
apt:
packages:
- libgsl-dev
- libsdl1.2-dev
- libreadline-dev
- imagemagick
- libfftw3-dev
- libudunits2-dev
- libblas-dev
- liblapack-dev
before_install:
- source <( curl --insecure https://raw.githubusercontent.com/dynverse/dynmethods/master/.travis_install_python.sh ) # use travis's own python
install:
- R -e 'install.packages("devtools")'
- R -e 'install.packages("knitr")'
- R -e 'devtools::install_github(c("r-lib/rlang", "tidyverse/ggplot2"))'
- R -e 'setRepositories(ind = 1:2); devtools::install()'
r_check_args: "--no-tests --no-manual --no-vignettes --no-build-vignettes --no-examples"
r_build_args: "--no-build-vignettes"
after_success:
- echo Init 1 succeeded!