[58c332]: / RadETL / .travis.yml

Download this file

45 lines (37 with data), 698 Bytes

 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
language: r
cache: packages
sudo: false
r:
- 3.4.4
- release
r_packages:
- devtools
- dplyr
- oro.dicom
- oro.nifti
- doSNOW
- rapportools
- foreach
- R6
- parallel
- stringr
- covr
r_github_packages:
- OHDSI/DatabaseConnector
- OHDSI/SqlRender
notifications:
email:
on_success: change
on_failure: change
before_script:
- wget -P ~ $CT_SAMPLE
- mkdir ~/signedrangeimages
- tar -xvf ~/signedrangeimages.tar.bz2 -C ~/signedrangeimages
script:
- cd ./archives/radETL
- R CMD build .
- Rscript -e "devtools::install_git('.')"
after_success:
- Rscript tests/testRadETL.R
- cat /tmp/radiologyDB.log
- Rscript -e 'library(covr); codecov()'