Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/docker/system_deps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN pacman -Syu --noconfirm \
coin-or-cbc coin-or-clp \
glpk \
scip \
gtest benchmark
benchmark

ENTRYPOINT ["/bin/bash", "-c"]
CMD [ "/bin/bash" ]
Expand Down
3 changes: 2 additions & 1 deletion cmake/docker/system_deps/cpp.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DUSE_COINOR=ON \
-DUSE_GLPK=ON \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON
-DUSE_SCIP=ON \
-DBUILD_googletest=ON
RUN cmake --build build --target all -v
RUN cmake --build build --target install

Expand Down
3 changes: 2 additions & 1 deletion cmake/docker/system_deps/dotnet.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON \
-DBUILD_DOTNET=ON \
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF \
-DBUILD_googletest=ON
RUN cmake --build build --target all -v
RUN cmake --build build --target install

Expand Down
3 changes: 2 additions & 1 deletion cmake/docker/system_deps/java.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON \
-DBUILD_JAVA=ON -DSKIP_GPG=ON \
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF \
-DBUILD_googletest=ON
RUN cmake --build build --target all -v
RUN cmake --build build --target install

Expand Down
3 changes: 2 additions & 1 deletion cmake/docker/system_deps/python.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON \
-DBUILD_PYTHON=ON \
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF \
-DBUILD_googletest=ON
RUN cmake --build build --target all -v
RUN cmake --build build --target install

Expand Down
Loading