forked from al2na/methylKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (37 loc) · 892 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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
language: R
sudo: false
warnings_are_errors: false
cache: packages
r: bioc-devel
bioc_required: true
bioc_packages:
- BiocCheck
after_script:
- ls -lah
- FILE=$(ls -1t *.tar.gz | head -n 1)
- Rscript -e "library(BiocCheck); BiocCheck(\"${FILE}\")"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
notifications:
email:
on_success: change
on_failure: change
env:
global:
- R_BUILD_ARGS="--no-build-vignettes --no-manual --no-resave-data"
- R_CHECK_ARGS="--no-build-vignettes --no-manual --timings"
- R_CHECK_TIME="TRUE"
- R_CHECK_TESTS="TRUE"
- _R_CHECK_TIMINGS_="0"
- CXX="g++-4.8"
- CC="gcc-4.8"