forked from privefl/bigsnpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (31 loc) · 806 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
# Sample .travis.yml for R projects
language: r
matrix:
include:
- r: release
os: osx
brew_packages: libgit2
- r: release
os: linux
#after_success: travis_wait 40 Rscript -e 'covr::codecov()'
- r: devel
os: linux
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install llvm &&
export PATH="/usr/local/opt/llvm/bin:$PATH" &&
export LDFLAGS="-L/usr/local/opt/llvm/lib" &&
export CFLAGS="-I/usr/local/opt/llvm/include"; fi
sudo: false
cache: packages
warnings_are_errors: true
r_check_args: "--no-manual --timings"
env:
global:
- BIGSNPR_CRAN: false
- _R_CHECK_FORCE_SUGGESTS_: false
- _R_CHECK_LENGTH_1_CONDITION_: verbose
- _R_CHECK_LENGTH_1_LOGIC2_: verbose
notifications:
email:
on_success: change
on_failure: change