Skip to content

Commit a1b85fe

Browse files
committed
Install SCIP 10 in CI without conan
1 parent ce3caf6 commit a1b85fe

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,14 @@ jobs:
6464
CXX: g++-11
6565
steps:
6666
- uses: actions/checkout@v3
67-
- name: Install parallelism library for C++
68-
run: sudo apt update && sudo apt install libtbb12
69-
- uses: MarkusJx/install-boost@v2.4.1
70-
with:
71-
boost_version: 1.84.0
7267
- name: Install SCIP
7368
run: |
74-
wget https://github.com/scipopt/scip/releases/download/v923/SCIPOptSuite-9.2.3-Linux-ubuntu22.sh
75-
chmod +x SCIPOptSuite-9.2.3-Linux-ubuntu22.sh
76-
./SCIPOptSuite-9.2.3-Linux-ubuntu22.sh --skip-license
69+
wget https://github.com/scipopt/scip/releases/download/v10.0.0/scipoptsuite_10.0.0-1+jammy_amd64.deb
70+
sudo apt update
71+
sudo apt install -y ./scipoptsuite_10.0.0-1+jammy_amd64.deb
7772
- name: Build SCIP++
7873
run: |
79-
CMAKE_PREFIX_PATH=./lib/cmake/scip:./boost/boost/lib/cmake/Boost-1.84.0 cmake -DBUILD_TESTS=ON .
74+
cmake -DBUILD_TESTS=ON .
8075
make -j tests
8176
- name: Run tests
8277
run: ./test/tests

0 commit comments

Comments
 (0)