docker-compose: enable java build with clang

Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Nicolas Oliver 2017-06-02 08:08:09 -07:00 committed by Mihai Tudor Panu
parent bb122bfac4
commit 7ec1765766

View File

@ -11,6 +11,8 @@ services:
- https_proxy - https_proxy
- no_proxy - no_proxy
- BUILDDOC=OFF - BUILDDOC=OFF
- BUILDCPP=ON
- BUILDFTI=ON
- BUILDSWIGPYTHON=OFF - BUILDSWIGPYTHON=OFF
- BUILDSWIGJAVA=OFF - BUILDSWIGJAVA=OFF
- BUILDSWIGNODE=OFF - BUILDSWIGNODE=OFF
@ -33,7 +35,7 @@ services:
build: build:
args: args:
- BUILDDOC=ON - BUILDDOC=ON
command: make -j8 doc command: bash -c "make -j8 doc"
python: python:
extends: main extends: main
@ -47,8 +49,6 @@ services:
build: build:
args: args:
- BUILDSWIGJAVA=ON - BUILDSWIGJAVA=ON
- CC=gcc-4.8
- CXX=g++-4.8
command: bash -c "make -j8 && make -j8 install && ldconfig && ctest --output-on-failure" command: bash -c "make -j8 && make -j8 install && ldconfig && ctest --output-on-failure"
node4: node4:
@ -57,7 +57,7 @@ services:
args: args:
- BUILDSWIGNODE=ON - BUILDSWIGNODE=ON
- NODE_VERSION=v4.1.2 - NODE_VERSION=v4.1.2
command: bash -c "make -j8 && make -j8 install && ldconfig && ctest --output-on-failure" command: bash -c "make -j8 && make -j8 install && ldconfig && ctest --output-on-failure -E examplenames_js"
node5: node5:
extends: node4 extends: node4