Skip to content

Commit

Permalink
Manually install zlib from source in travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kdm9 committed Oct 21, 2015
1 parent 46e2f4f commit 98ece45
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ compiler:
- gcc

sudo: false
dist: trusty

addons:
apt:
Expand All @@ -21,9 +20,16 @@ addons:
- lcov
- libgsl0-dev
- python
- zlib1g-dev

install:
- pushd $HOME
- wget http://zlib.net/zlib-1.2.8.tar.xz
- tar xvf zlib-1.2.8.tar.xz
- cd zlib-1.2.8
- ./configure --prefix=$HOME
- make
- make install
- popd
- git submodule update --init
- mkdir build
- mkdir target
Expand Down

0 comments on commit 98ece45

Please sign in to comment.