forked from EMSL-Computing/ftmsRanalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
45 lines (43 loc) · 1.97 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
language: r
sudo: false
cache: packages
pandoc_version: 1.19.2.1
env:
global:
- _R_CHECK_FORCE_SUGGESTS_=false
- R_REMOTES_NO_ERRORS_FROM_WARNINGS=true
- R_CHECK_ARGS="--no-manual"
- R_BUILD_ARGS="--no-manual"
matrix:
include:
- r: release
before_install:
- Rscript -e 'install.packages(c("remotes"));if (!all(c("remotes") %in% installed.packages())) { q(status = 1, save = "no")}'
- Rscript -e 'remotes::install_deps(dependencies = TRUE)'
- Rscript -e 'remotes::install_github(c("delta-rho/trelliscope","EMSL-Computing/MetaCycData"))'
before_deploy:
- Rscript -e 'remotes::install_cran("pkgdown")'
deploy:
provider: script
script: Rscript -e 'pkgdown::deploy_site_github(verbose = TRUE)'
skip_cleanup: true
after_success:
- test $TRAVIS_R_VERSION_STRING = 'release' && Rscript -e 'remotes::install_cran("covr");covr::codecov()'
- r: oldrel
before_install:
- Rscript -e 'install.packages(c("remotes"));if (!all(c("remotes") %in% installed.packages())) { q(status = 1, save = "no")}'
- Rscript -e 'remotes::install_deps(dependencies = TRUE)'
- Rscript -e 'remotes::install_github(c("delta-rho/trelliscope","EMSL-Computing/MetaCycData"))'
- r: 3.4
before_install:
- Rscript -e 'install.packages(c("remotes"));if (!all(c("remotes") %in% installed.packages())) { q(status = 1, save = "no")}'
- Rscript -e 'remotes::install_deps(dependencies = TRUE)'
- Rscript -e 'remotes::install_github(c("delta-rho/trelliscope","EMSL-Computing/MetaCycData"))'
- r: devel
before_install:
- Rscript -e 'install.packages(c("remotes"));if (!all(c("remotes") %in% installed.packages())) { q(status = 1, save = "no")}'
- Rscript -e 'remotes::install_deps(dependencies = TRUE)'
- Rscript -e 'remotes::install_github(c("delta-rho/trelliscope","EMSL-Computing/MetaCycData"))'
allow_failures:
- r: devel
fast_finish: true