cmake(ci): disable highs in system deps jobs

This commit is contained in:
Mizux Seiha
2024-07-16 16:02:43 +02:00
parent 46bbc9b165
commit c6a35bfa56
4 changed files with 16 additions and 4 deletions

View File

@@ -7,7 +7,10 @@ COPY . .
FROM devel AS build
RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DUSE_COINOR=ON -DUSE_GLPK=ON -DUSE_SCIP=ON
-DUSE_COINOR=ON \
-DUSE_GLPK=ON \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON
RUN cmake --build build --target all -v
RUN cmake --build build --target install

View File

@@ -9,7 +9,10 @@ COPY . .
FROM devel AS build
RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DUSE_COINOR=ON -DUSE_GLPK=ON -DUSE_SCIP=ON \
-DUSE_COINOR=ON \
-DUSE_GLPK=ON \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON \
-DBUILD_DOTNET=ON \
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF
RUN cmake --build build --target all -v

View File

@@ -8,7 +8,10 @@ COPY . .
FROM devel AS build
RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DUSE_COINOR=ON -DUSE_GLPK=ON -DUSE_SCIP=ON \
-DUSE_COINOR=ON \
-DUSE_GLPK=ON \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON \
-DBUILD_JAVA=ON -DSKIP_GPG=ON \
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF
RUN cmake --build build --target all -v

View File

@@ -15,7 +15,10 @@ FROM devel AS build
# Archlinux do not provide pybind11 protobuf package
RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \
-DBUILD_pybind11_protobuf=ON \
-DUSE_COINOR=ON -DUSE_GLPK=ON -DUSE_SCIP=ON \
-DUSE_COINOR=ON \
-DUSE_GLPK=ON \
-DUSE_HIGHS=OFF \
-DUSE_SCIP=ON \
-DBUILD_PYTHON=ON \
-DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF
RUN cmake --build build --target all -v