File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737 if : matrix.os == 'ubuntu-latest'
3838 - name : Build
3939 run : |
40- cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
40+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCOLUMNGENERATIONSOLVER_USE_CLP=ON
4141 cmake --build build --config Release --parallel
4242 cmake --install build --config Release --prefix install
4343 - name : Run tests
4949 git checkout main
5050 - name : Build
5151 run : |
52- cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
52+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCOLUMNGENERATIONSOLVER_USE_CLP=ON
5353 cmake --build build --config Release --parallel
5454 cmake --install build --config Release --prefix install
5555 - name : Run tests
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.15.0)
33project (ColumnGenerationSolver LANGUAGES CXX )
44
55# Solver options.
6- option (COLUMNGENERATIONSOLVER_USE_CLP "Use CLP" ON )
7- option (COLUMNGENERATIONSOLVER_USE_HIGHS "Use Highs" ON )
6+ option (COLUMNGENERATIONSOLVER_USE_CLP "Use CLP" OFF )
7+ option (COLUMNGENERATIONSOLVER_USE_HIGHS "Use Highs" OFF )
88option (COLUMNGENERATIONSOLVER_USE_CPLEX "Use CPLEX" OFF )
99option (COLUMNGENERATIONSOLVER_USE_XPRESS "Use Xpress" OFF )
1010
You can’t perform that action at this time.
0 commit comments