Skip to content

Commit

Permalink
[HiGHS] update to v1.9.0 (#10198)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Jan 2, 2025
1 parent 7a725e8 commit 0df6209
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion H/HiGHS/HiGHS/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# To ensure a build, it isn't sufficient to modify highs_common.jl.
# You also need to update a line in this file:
# Last updated: 2024-11-14
# Last updated: 2025-01-03

include("../highs_common.jl")

Expand Down
2 changes: 1 addition & 1 deletion H/HiGHS/HiGHSstatic/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# To ensure a build, it isn't sufficient to modify highs_common.jl.
# You also need to update a line in this file:
# Last updated: 2024-11-14
# Last updated: 2025-01-03

include("../highs_common.jl")

Expand Down
7 changes: 5 additions & 2 deletions H/HiGHS/highs_common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,22 @@ using BinaryBuilder, Pkg

name = "HiGHS"

version = v"1.8.1"
version = v"1.9.0"

sources = [
GitSource(
"https://github.com/ERGO-Code/HiGHS.git",
"4a7f24ac63b3832e30694969e0a69a4b3c1f1674",
"66f735e60ce4d4835edaa05a35f2bd4048969c54",
),
]

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()

# Disable riscv for now
platforms = filter!(p -> arch(p) != "riscv64", platforms)

function build_script(; shared_libs::String)
build_static = shared_libs == "OFF" ? "ON" : "OFF"
return "BUILD_SHARED=$(shared_libs)\nBUILD_STATIC=$(build_static)\n" * raw"""
Expand Down

0 comments on commit 0df6209

Please sign in to comment.