forked from tlverse/sl3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
55 lines (43 loc) · 1.07 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
branches:
only:
- master
- devel
env:
global:
- RGL_USE_NULL=TRUE
- PKG_CFLAGS="-O3 -Wall -pedantic"
language: r
sudo: required
cache: packages
cran: "http://cran.rstudio.com"
warnings_are_errors: true
r_build_args: '--no-manual'
r_check_args: '--no-build-vignettes --no-manual'
r:
- release
- devel
before_install:
- sudo apt-get -y install python3-pip python-dev
- sudo pip install numpy tensorflow keras
r_packages:
- covr
- drat
script:
- Rscript -e "devtools::install_github(c('osofr/condensier',
'tlverse/delayed',
'tlverse/origami',
'jeremyrcoyle/hal9001'),
upgrade_dependencies = FALSE)"
#r_github_packages:
#- osofr/condensier
#- tlverse/delayed
#- tlverse/origami
#- jeremyrcoyle/hal9001
after_success:
- travis_wait 80 Rscript -e 'covr::codecov()'
_failure:
- "./travis-tool.sh dump_logs"
notifications:
email:
on_success: change
on_failure: change