Skip to content
Snippets Groups Projects
Commit 33b332fe authored by Ben Taylor's avatar Ben Taylor
Browse files

Get rid of lib4j complaints during build

parent 992f12b9
No related branches found
No related tags found
No related merge requests found
...@@ -5,11 +5,14 @@ sudo: false ...@@ -5,11 +5,14 @@ sudo: false
before_install: before_install:
- "export DISPLAY=:99.0" - "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start" - "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" - "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" - "cd EMBOSS-6.6.0 && mkdir build && ./configure --prefix $(pwd)/build"
- "export EMBOSS_ROOT=$(pwd)/build && cd .." - "make"
- "ls -l ${EMBOSS_ROOT}/bin" - "make install"
- "export EMBOSS_ROOT=$(pwd)/build && cd ../.."
install:
- "make" - "make"
- "cd test" - "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)" ] 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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment