Skip to content

Commit

Permalink
Get rid of lib4j complaints during build
Browse files Browse the repository at this point in the history
  • Loading branch information
bewt85 committed Jun 11, 2015
1 parent 992f12b commit 33b332f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .travis.yml
Expand Up @@ -5,11 +5,14 @@ sudo: false
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- "mkdir dependencies && cd dependencies"
- "wget ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.6.0.tar.gz && tar xzfv EMBOSS-6.6.0.tar.gz"
- "cd EMBOSS-6.6.0 && mkdir build && ./configure --prefix $(pwd)/build && make && make install"
- "export EMBOSS_ROOT=$(pwd)/build && cd .."
- "ls -l ${EMBOSS_ROOT}/bin"
- "cd EMBOSS-6.6.0 && mkdir build && ./configure --prefix $(pwd)/build"
- "make"
- "make install"
- "export EMBOSS_ROOT=$(pwd)/build && cd ../.."
install:
- "make"
- "cd test"
- "ln -s $(pwd)/../etc/log4j.properties ."
script: ant -f build-test.xml test -DEMBOSS_ROOT=$EMBOSS_ROOT | tee test.log && [ -z "$(grep 'Failures:\s[^0]\|Errors:\s[^0]' test.log)" ]

0 comments on commit 33b332f

Please sign in to comment.