Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove SYMPHONY dependence on DyLP #98

Merged
merged 4 commits into from
Aug 9, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Cache Homebrew Bundler RubyGems
id: cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Upload bottles as artifact
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bottles
path: '*.bottle.*'
5 changes: 1 addition & 4 deletions symphony.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
class Symphony < Formula

Check warning on line 1 in symphony.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

`brew linkage --cached --test --strict coin-or-tools/coinor/symphony` failed on Linux!

Indirect dependencies with linkage: coin-or-tools/coinor/coinutils coin-or-tools/coinor/osi

Check warning on line 1 in symphony.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-13)

No bottle built for symphony!

symphony has unbottled dependencies, so a bottle will not be built.
desc "Framework for solving mixed integer linear programs"
homepage "https://github.com/coin-or/SYMPHONY"
url "https://github.com/coin-or/SYMPHONY/archive/refs/tags/releases/5.6.18.tar.gz"
sha256 "f566e2986c6b4269a5a128cea13622d3d90b046b7a9151ebd89f27c495f183a0"
revision 1

head "https://github.com/coin-or/SYMPHONY"

Expand All @@ -17,7 +18,6 @@

depends_on "coin-or-tools/coinor/cgl"
depends_on "coin-or-tools/coinor/clp"
depends_on "coin-or-tools/coinor/dylp"
depends_on "coin-or-tools/coinor/glpk@448"
depends_on "gcc"
depends_on "readline"
Expand All @@ -43,9 +43,6 @@
args << "--with-clp-lib=-L#{Formula["coin-or-tools/coinor/clp"].opt_lib} -lClp -lOsiClp"
args << "--with-clp-incdir=#{Formula["coin-or-tools/coinor/clp"].opt_include}/clp/coin"

args << "--with-dylp-lib=-L#{Formula["coin-or-tools/coinor/dylp"].opt_lib} -lDylp"
args << "--with-dylp-incdir=#{Formula["coin-or-tools/coinor/dylp"].opt_include}/dylp/coin"

args << "--with-glpk-lib=-L#{Formula["coin-or-tools/coinor/glpk@448"].opt_lib} -lglpk"
args << "--with-glpk-incdir=#{Formula["coin-or-tools/coinor/glpk@448"].opt_include}"
args << "--with-gmpl"
Expand Down
Loading