Commit 87eee4d3 authored by rsketine's avatar rsketine Committed by Scott Cyphers

Update Dockerfile (#1298)

* Update Dockerfile

Added -j 4 to speed up build times

* Update Dockerfile

j -4 comes across the same error as j -8 so moving this to j -2

* Update Dockerfile

* Update Dockerfile

* experimenting with less number of tasks

* Update Dockerfile

* Added cmake changes to use the INTERPRETER instead of cpu.

* Update .travis.yml
parent 22eefaaf
......@@ -28,9 +28,9 @@ RUN pip install tox
COPY . /root/ngraph
RUN mkdir /root/ngraph/build
WORKDIR /root/ngraph/build
RUN cmake ../ -DNGRAPH_USE_PREBUILT_LLVM=TRUE -DCMAKE_INSTALL_PREFIX="~/ngraph_dist"
RUN cmake ../ -DNGRAPH_CPU_ENABLE=FALSE -DNGRAPH_UNIT_TEST_ENABLE=FALSE -DDNGRAPH_TOOLS_ENABLE=FALSE -DNGRAPH_USE_PREBUILT_LLVM=TRUE -DCMAKE_INSTALL_PREFIX="~/ngraph_dist"
RUN make style-check
RUN make
RUN make
RUN make install
# Prepare nGraph Python API
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment