forked from datacarpentry/genomics-r-intro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
68 lines (60 loc) · 2.3 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
## tic Travis CI template: linux
## revision date: 2020-05-09
# OS ---------------------------------------------------------------------------
os: linux
dist: bionic
# meta -------------------------------------------------------------------------
language: r
r:
release
cache:
- packages
- ccache
latex: false
# system pacakges --------------------------------------------------------------
addons:
apt:
packages:
- linkchecker
- python-pip
# environment variables --------------------------------------------------------
env:
global:
- MAKEFLAGS="-j 2"
# if you use bookdown or blogdown, replace "PKGDOWN" by the respective
# capitalized term. This also might need to be done in tic.R
- BUILD_PKGDOWN=true
# Stages -----------------------------------------------------------------------
before_install:
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then brew install ccache; fi
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then export PATH="/usr/local/opt/ccache/libexec:$PATH"; fi
- rvm install 2.5.8
- rvm 2.5.8 do ruby -S gem install bundler
- echo -e "options(Ncpus = 8, repos = structure(c(CRAN = 'https://cloud.r-project.org/')))" > $HOME/.Rprofile
- mkdir -p $HOME/.R && echo -e 'CC=ccache gcc -std=gnu99\nCXX=ccache g++\nCXX11=ccache g++ -std=gnu99\nCXX14=ccache g++ -std=gnu99\nCXX17=ccache g++ -std=gnu99\nFC=ccache gfortran\nF77=ccache gfortran' > $HOME/.R/Makevars
- mkdir -p $HOME/.ccache && echo -e 'max_size = 5.0G\nsloppiness = include_file_ctime\nhash_dir=false' > $HOME/.ccache/ccache.conf
- R -q -e 'if (!requireNamespace("remotes")) install.packages("remotes")'
- R -q -e 'if (getRversion() < "3.2" && !requireNamespace("curl")) install.packages("curl")'
- R -q -e 'remotes::install_github("ropensci/tic", upgrade = "always"); print(tic::dsl_load()); tic::prepare_all_stages()'
- R -q -e 'tic::before_install()'
install:
- R -q -e 'tic::install()'
before_script:
- R -q -e 'tic::before_script()'
script:
- R -q -e 'tic::script()'
after_success:
- R -q -e 'tic::after_success()'
after_failure:
- R -q -e 'tic::after_failure()'
before_deploy:
- R -q -e 'tic::before_deploy()'
deploy:
provider: script
script: R -q -e 'tic::deploy()'
on:
all_branches: true
after_deploy:
- R -q -e 'tic::after_deploy()'
after_script:
- R -q -e 'tic::after_script()'