forked from exasol/r-exasol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (31 loc) · 963 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
language: r
# see also https://docs.travis-ci.com/user/languages/r
# Using the package cache to store R package dependencies can significantly
# speed up build times and is recommended for most builds.
cache:
- apt
- packages
# You will need to set sudo: false in order to use the container based builds
# and package caching.
sudo: false
warnings_are_errors: false
addons:
apt:
packages:
- unixodbc-dev
notifications:
email:
on_success: change
on_failure: change
before_install:
- wget $EXAODBC_URL$EXAODBC_DRV_FILE".tar.gz"
- tar -xzf $EXAODBC_DRV_FILE".tar.gz"
- ./$EXAODBC_DRV_FILE/config_odbc --mode=config --host=$EXAHOST --user=$EXAUSER --password=$EXAPW
r_github_packages:
- jimhester/covr
- jimhester/lintr
- marcelboldt/DBI # development version needed for DBItest
- marcelboldt/DBItest
after_success:
- Rscript -e 'library(covr); codecov()'
- Rscript -e 'devtools::install(); lintr::lint_package()'