Skip to content
Snippets Groups Projects
Unverified Commit 72198aa5 authored by Brian Carrier's avatar Brian Carrier Committed by GitHub
Browse files

Merge pull request #1247 from rishwanth1995/travis_clang_error

removed test error for clang compiler
parents ff6fd160 43a0cf5d
Branches
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ build_script: ...@@ -36,7 +36,7 @@ build_script:
- python win32\updateAndBuildAll.py -m - python win32\updateAndBuildAll.py -m
- ps: ant -version - ps: ant -version
- ps: pushd bindings/java - ps: pushd bindings/java
- cmd: ant dist-PostgreSQL - cmd: ant -q dist-PostgreSQL
- ps: popd - ps: popd
test: off test: off
...@@ -5,7 +5,12 @@ installLib() { ...@@ -5,7 +5,12 @@ installLib() {
cd $1 cd $1
./synclibs.sh ./synclibs.sh
./autogen.sh ./autogen.sh
./configure && make > /dev/null && sudo make install > /dev/null if test ${TRAVIS_OS_NAME} = "linux"; then
./configure -prefix=/usr > /dev/null
else
./configure > /dev/null
fi
make > /dev/null && sudo make install > /dev/null
cd .. cd ..
} }
...@@ -19,4 +24,4 @@ fi ...@@ -19,4 +24,4 @@ fi
installLib libvhdi installLib libvhdi
installLib libvmdk installLib libvmdk
./bootstrap && ./configure --prefix=/usr && make > /dev/null ./bootstrap && ./configure --prefix=/usr && make > /dev/null
cd bindings/java/ && ant dist-PostgreSQL cd bindings/java/ && ant -q dist-PostgreSQL
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment