-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
63 lines (56 loc) · 1.27 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
language: cpp
matrix:
include:
- os: linux
addons:
apt:
packages:
- liblzma-dev
- libbz2-dev
- libz-dev
- git
- g++
- build-essential
- cmake
- libcurl4-openssl-dev
script:
- git submodule update --init --recursive
- make
- make test
# # # language: c++
# # # compiler:
# # # - clang++
# # # - g++
# # # image: ubuntu
# # image: node:latest
# # before_script:
# # - echo `pwd`
# # - apt-get update -qq && apt-get install -y liblzma-dev libbz2-dev libz-dev git g++ build-essential cmake libcurl4-openssl-dev
# # my_deammeth_test:
# # script:
# # #- find .
# # - make -f Makefile
# # Control file for continuous integration testing at http://travis-ci.org/
# # taken from samtools
# language: c
# compiler:
# - gcc
# # matrix:
# # include:
# # # An unoptimised C99 build, for detecting non-static inline functions
# # - compiler: gcc
# # env: CFLAGS="-std=gnu99 -O0"
# addons:
# apt:
# packages:
# - liblzma-dev
# - libbz2-dev
# - libz-dev
# - git
# ## - g++
# - build-essential
# - cmake
# - libcurl4-openssl-dev
# script:
# - make
# - make test