forked from Gibbons-Lab/mbtools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
37 lines (31 loc) · 878 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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: R
sudo: false
cache: packages
r: bioc-release
env:
- CXX=g++-9
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libxml2-dev
- samtools
- cmake
- gcc-9
- g++-9
# Don't build vignettes
before_install:
- rm -rf vignettes
- curl -L https://github.com/lh3/minimap2/releases/download/v2.13/minimap2-2.13_x64-linux.tar.bz2 | tar -jxvf -
- sudo cp ./minimap2-2.13_x64-linux/minimap2 /usr/bin/ && rm -rf ./minimap2-*
- git clone --recursive https://github.com/seqan/slimm
- (cd slimm && mkdir build && cd build && cmake .. && make && sudo cp bin/slimm /usr/bin/)
- rm -rf slimm
- echo "options(Ncpus = 4)" >> $R_PROFILE
- cat $R_PROFILE
after_success:
- Rscript -e 'covr::codecov()'
notifications:
email: false