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
19 changes: 8 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,27 +64,24 @@ jobs:
CXX: g++-11
steps:
- uses: actions/checkout@v3
- name: Install parallelism library for C++
run: sudo apt update && sudo apt install libtbb12
- uses: MarkusJx/[email protected]
with:
boost_version: 1.84.0
- name: Install SCIP
run: |
wget https://github.com/scipopt/scip/releases/download/v923/SCIPOptSuite-9.2.3-Linux-ubuntu22.sh
chmod +x SCIPOptSuite-9.2.3-Linux-ubuntu22.sh
./SCIPOptSuite-9.2.3-Linux-ubuntu22.sh --skip-license
wget -q https://github.com/scipopt/scip/releases/download/v10.0.0/scipoptsuite_10.0.0-1+jammy_amd64.deb
sudo apt update
sudo apt install -y ./scipoptsuite_10.0.0-1+jammy_amd64.deb
sudo apt install -y libmpfr-dev libboost-all-dev
- name: Build SCIP++
run: |
CMAKE_PREFIX_PATH=./lib/cmake/scip:./boost/boost/lib/cmake/Boost-1.84.0 cmake -DBUILD_TESTS=ON .
cmake -DBUILD_TESTS=ON .
make -j tests
- name: Run tests
run: ./test/tests
test_release_mac:
runs-on: macos-13
runs-on: macos-15
steps:
- uses: actions/checkout@v3
- uses: turtlebrowser/get-conan@main
- name: Install Conan
run: brew install conan
- name: Run Conan Install
run: |
conan profile detect
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - [Doc:Unreleased]

### Changed

- [PR38](https://github.com/scipopt/SCIPpp/pull/38) Update to SCIP 10.0.0.

## [1.3.0] - 2025-10-08

### Changed
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def layout(self):
cmake_layout(self)

def requirements(self):
self.requires("scip/9.2.3", transitive_headers=True)
self.requires("scip/10.0.0", transitive_headers=True)
if self.options.with_tests:
self.requires("boost/[>=1.84.0 <2]") # required only for tests

Expand Down
Loading
Loading