forked from PredictiveEcology/SpaDES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
123 lines (108 loc) · 2.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Sample .travis.yml for R projects.
#
# See README.md for instructions, or for more configuration options,
# see the wiki:
# https://github.com/craigcitro/r-travis/wiki
sudo: required
language: r
env:
global:
- secure: "KxcKSH4TFMbNMKAj6ePl4yq6SCeYQJcDkw0PMuEdImomwxqY3mP8p+GWVmNN1PKl8k7C/rgLNPAiBoJmddXMzFvGoGRWvyeER0lDN49rzNPHANF9wnMBBYN27mp98hBZlX2Vxu48M3jbmy+wRpmKKvKxTxOa8tUkt0GVEUTPeGQ="
matrix:
include:
- os: linux
dist: precise
r: oldrel
cran: http://cran.rstudio.com/
before_install:
- tlmgr install xcolor
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- echo "options(repos = c(CRAN='http://cran.rstudio.com'))" >> ~/.Rprofile
- os: linux
dist: precise
r: release
cran: http://cran.rstudio.com/
before_install:
- tlmgr install xcolor
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- echo "options(repos = c(CRAN='http://cran.rstudio.com'))" >> ~/.Rprofile
- os: linux
dist: precise
r: devel
cran: http://cran.rstudio.com/
before_install:
- tlmgr install xcolor
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- echo "options(repos = c(CRAN='http://cran.rstudio.com'))" >> ~/.Rprofile
- os: linux
dist: trusty
cran: https://cran.rstudio.com/
before_install:
- tlmgr install xcolor
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- echo "options(repos = c(CRAN='https://cran.rstudio.com'))" >> ~/.Rprofile
- chmod 755 ./_push_vignettes.sh
after_success:
- ./_push_vignettes.sh
- Rscript -e 'library(covr); coveralls(coverage = print(package_coverage(quiet = FALSE)))'
- os: osx
osx_image: xcode8
cran: https://cran.rstudio.com/
latex: false
r_build_args: '--no-build-vignettes'
r_check_args: '--as-cran --ignore-vignettes --no-examples'
r_github_packages:
- s-u/fastshp
- MangoTheCat/VisualTest
before_install:
- echo "options(repos = c(CRAN='https://cran.rstudio.com'))" >> ~/.Rprofile
r_build_args: " "
r_check_args: "--as-cran"
warnings_are_errors: true
r_binary_packages:
- chron
- CircStats
- colorspace
- data.table
- DEoptim
- dichromat
- digest
- dplyr
- ggplot2
- gtable
- httr
- igraph
- knitr
- labeling
- latticeExtra
- lubridate
- magrittr
- munsell
- proto
- RandomFields
- raster
- RColorBrewer
- Rcpp
- reshape
- rgdal
- scales
- secr
- snow
- sp
- stringr
- testthat
- tkrplot
- xts
- zoo
notifications:
email:
on_success: change
on_failure: change
branches:
only:
- master
- development