Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

working .travis.yml #3

Open
wants to merge 28 commits into
base: sandbox
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
527344d
Create .travis.yml
mmterpstra Mar 28, 2017
c82bf2b
cp Makefile Makefile.in
mmterpstra Mar 28, 2017
b941cc5
Update .travis.yml
mmterpstra Mar 28, 2017
d090702
Delete .travis.yml
mmterpstra Mar 28, 2017
c17f04c
Update .travis.yml
mmterpstra Mar 28, 2017
8f5e52c
Update .travis.yml
mmterpstra Mar 28, 2017
de049e9
Update .travis.yml
mmterpstra Mar 28, 2017
0852165
Update .travis.yml
mmterpstra Mar 28, 2017
14e2a43
Update .travis.yml
mmterpstra Mar 28, 2017
a09aa96
Update .travis.yml
mmterpstra Mar 28, 2017
9e2e440
Update .travis.yml
mmterpstra Mar 28, 2017
614f366
Update .travis.yml
mmterpstra Mar 28, 2017
a677fb0
Update .travis.yml
mmterpstra Mar 28, 2017
ce7f5c9
Update .travis.yml
mmterpstra Mar 28, 2017
ae6599a
Update .travis.yml
mmterpstra Mar 29, 2017
828cd27
update libraries for src/Makefile.am
mmterpstra Apr 21, 2017
75ed93d
Added installation of compression libs
mmterpstra Apr 21, 2017
4d40863
Add autoheader && autoreconf in .travis.yml
mmterpstra Apr 21, 2017
f4e5ae0
Remove libzip-dev as requirement in .travis.yml
mmterpstra Apr 21, 2017
9fd701a
Update .travis.yml
mmterpstra Apr 21, 2017
15412d4
Update .travis.yml
mmterpstra Apr 21, 2017
88432ef
.travis.yml aclocal symlink
mmterpstra Apr 21, 2017
ae2505b
Add misisng htslib make && make install
mmterpstra Apr 21, 2017
ab3e052
added htslib1.4 download to travis build
mmterpstra Apr 21, 2017
397d2f9
Update .travis.yml
mmterpstra Apr 21, 2017
e594622
Update .travis.yml
mmterpstra Apr 21, 2017
d5c96d5
Add libyaml-perl to .travis.yml
mmterpstra Apr 21, 2017
0437e63
Reformat script/install in travis.yml
mmterpstra Apr 21, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: cpp
compiler:
- gcc
before_install:
- sudo apt-get install libcurl4-openssl-dev r-base-dev r-base-core groff gnuplot autoconf automake autotools-dev m4 libtool liblzma-dev libbz2-dev libyaml-perl
- (wget http://ftp.gnu.org/gnu/automake/automake-1.11.4.tar.gz && tar -zxf automake-1.11.4.tar.gz && cd automake-1.11.4 && ./configure && sudo make && sudo make install)
- automake --version
- autoconf --version
- libtool --version
- (rm -rf htslib && wget https://github.com/samtools/htslib/archive/1.4.zip && unzip 1.4.zip && mv htslib-1.4/ htslib && cd htslib && autoheader && autoconf && ./configure && make && sudo make install && cp Makefile Makefile.in) #make install might not be needed
install:
- sudo ln -s /usr/share/aclocal /usr/local/share/aclocal
- autoheader
- autoreconf
script:
- ./configure
- make
8 changes: 0 additions & 8 deletions htslib/.travis.yml

This file was deleted.

Loading