Skip to content

Commit

Permalink
Update scip-sys (#128)
Browse files Browse the repository at this point in the history
* Update scip-sys version to use github hosted SCIP binaries

* Update SCIP version in CI

* Use correct link for scip deb package
  • Loading branch information
mmghannam authored Mar 13, 2024
1 parent 91c41ee commit cea5d96
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: tests

env:
version: 8.0.3
version: 9.0.0
RUST_VERSION: 1.74.0

on:
Expand All @@ -21,8 +21,8 @@ jobs:
- uses: actions/checkout@v3
- name: Install dependencies (SCIPOptSuite)
run: |
wget --quiet --no-check-certificate https://github.com/scipopt/scip/releases/download/$(echo "v${{env.version}}" | tr -d '.')/SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu.deb
wget --quiet --no-check-certificate https://github.com/scipopt/scip/releases/download/$(echo "v${{env.version}}" | tr -d '.')/SCIPOptSuite-${{ env.version }}-Linux-ubuntu20.deb
sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ env.version }}-Linux-ubuntu20.deb
- name: Install rust stable toolchain
uses: actions-rs/toolchain@v1
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# CHANGELOG

# Unreleased
### Added
### Fixed
### Changed
### Remove

## 0.3.1
### Added
### Fixed
### Changed
- Update scip-sys to 0.1.9 to use github hosted binaries of SCIP.
### Removed

## 0.3.0
### Added
- Add support for indicator constraints
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["Mohammad Ghannam <mohammad.m.ghannam@gmail.com>"]
description = "Rust interface for SCIP"
license = "Apache-2.0"
repository = "https://github.com/scipopt/russcip"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
exclude = ["data/test/*"]

Expand All @@ -13,7 +13,7 @@ raw = []
bundled = ["scip-sys/bundled"]

[dependencies]
scip-sys = "0.1.8"
scip-sys = "0.1.9"

[dev-dependencies]
rayon = "1.5.1"
Expand Down

0 comments on commit cea5d96

Please sign in to comment.