forked from BioinformaticsFMRP/TCGAbiolinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
82 lines (73 loc) · 1.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
language: r
r:
- bioc-release
sudo: true
cache: packages
bioc_required: true
bioc_use_devel: true
warnings_are_errors: false
os:
- linux
- osx
osx_image: xcode9
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -q ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libc6 libc6-dev ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then Rscript -e 'install.packages("nlme", lib="/home/travis/R-bin/lib/R/library/")'; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then Rscript -e 'install.packages("roxygen2", lib="/home/travis/R-bin/lib/R/library/")'; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then Rscript -e 'install.packages("R6", lib="/home/travis/R-bin/lib/R/library/")'; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_R_VERSION_STRING" = 'bioc-devel' ]]; then mkdir ~/.R && echo 'CXX1X=g++ -std=c++0x -g -O2 -fPIC' > ~/.R/Makevars; fi
r-packages:
- testthat
- knitr
- markdown
- DBI
- RSQLite
- R6
bioc_packages:
- BiocStyle
- GenomicRanges
- Biobase
- affy
- EDASeq
- edgeR
- biomaRt
- IRanges
- supraHex
- S4Vectors
- ComplexHeatmap
- SummarizedExperiment
- BiocGenerics
- GenomicFeatures
- TxDb.Hsapiens.UCSC.hg19.knownGene
- limma
- genefilter
- ConsensusClusterPlus
- pathview
- clusterProfiler
- BiocCheck
- fgsea
- GO.db
- DO.db
- org.Hs.eg.db
r_github_packages:
- eddelbuettel/digest
- kevinushey/rex
- kevinushey/later
- jimhester/crayon
- edwindj/whisker
- jimhester/withr
- jimhester/covr
- hfang-bristol/dnet
after_script:
- ls -lah
- FILE=$(ls -1t *.tar.gz | head -n 1)
- Rscript -e "library(BiocCheck); BiocCheck(\"${FILE}\")
after_success:
- travis_wait Rscript -e 'library(covr);codecov()'
r_build_args: --no-build-vignettes --no-manual --no-resave-data
r_check_args: --no-build-vignettes --no-manual
notifications:
slack: omics-team:mp8k727GslFLZPQrmuvOkCcc
email: false