3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 00:15:00 +02:00

[jenkins] Build argument -DBuild_Deps=Always no longer needed, is now the default

This commit is contained in:
Nils Wentzell 2022-01-20 15:38:11 -05:00
parent 4b6cc21a2c
commit 60b27ad3c9

View File

@ -11,6 +11,6 @@ RUN chown build .
USER build
ARG BUILD_ID
ARG CMAKE_ARGS
RUN cmake $SRC/$APPNAME -DTRIQS_ROOT=${INSTALL} -DBuild_Deps=Always $CMAKE_ARGS && make -j4 || make -j1 VERBOSE=1
RUN cmake $SRC/$APPNAME -DTRIQS_ROOT=${INSTALL} $CMAKE_ARGS && make -j4 || make -j1 VERBOSE=1
USER root
RUN make install