Skip to content
Snippets Groups Projects
Commit c179bade authored by Greg DiCristofaro's avatar Greg DiCristofaro
Browse files

fix for running in travis on os-x

parent 4be4d04f
No related branches found
No related tags found
No related merge requests found
......@@ -65,9 +65,11 @@ before_script:
script:
- javac -version
- ./bootstrap && ./configure --prefix=/usr && make
- pushd bindings/java/
- ant -q dist
- ant test
- pushd bindings/java/ && ant -q dist
# don't run tests on linux; libtsk not present due to SIP on osx: VIK-6971
- if [ $TRAVIS_OS_NAME != "osx" ]; then
ant -q test
fi
- popd
- pushd case-uco/java/ && ant -q && popd
- make check && if [ -f "tests/test-suite.log" ];then cat tests/test-suite.log; fi ; if [ -f "unit_tests/base/test-suite.log" ];then cat unit_tests/base/test-suite.log; fi
......
......@@ -16,6 +16,3 @@ installLib() {
installLib libvhdi 20201018
installLib libvmdk 20200926
echo "directories:"
ls /usr/lib
ls /usr/local/lib
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment