Skip to content

Commit

Permalink
Add Gurobi v11 artifact for CI testing (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbowly authored Dec 2, 2023
1 parent 4f68112 commit f4477c9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Artifacts.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[gurobilinux64]
git-tree-sha1 = "e1ea344a512fd4849fd788ddbe04e5f2c0d986b2"
git-tree-sha1 = "79f6322f611b73845e645125d5a54f17b16f6428"
os = "linux"
lazy = true

[[gurobilinux64.download]]
url = "https://packages.gurobi.com/10.0/gurobi10.0.0_linux64.tar.gz"
sha256 = "91a9ce1464f5f948809fcdfbdeb55f77698ed8a6d6cfa6985295424b6ece2bd4"
url = "https://packages.gurobi.com/11.0/gurobi11.0.0_linux64.tar.gz"
sha256 = "6a1ec7499b230aea0542bc893bf0642ae8ce983dd5ef0c37cb3a253d827ce634"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ Then, set the `GUROBI_HOME` environment variable as appropriate and run

```julia
# On Windows, this might be
ENV["GUROBI_HOME"] = "C:\\Program Files\\gurobi1000\\win64"
ENV["GUROBI_HOME"] = "C:\\Program Files\\gurobi1100\\win64"
# ... or perhaps ...
ENV["GUROBI_HOME"] = "C:\\gurobi1000\\win64"
ENV["GUROBI_HOME"] = "C:\\gurobi1100\\win64"
# On Mac, this might be
ENV["GUROBI_HOME"] = "/Library/gurobi1000/mac64"
ENV["GUROBI_HOME"] = "/Library/gurobi1100/mac64"

import Pkg
Pkg.add("Gurobi")
Expand Down
2 changes: 1 addition & 1 deletion src/Gurobi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ elseif Sys.islinux()
# Let's use the artifact instead.
const libgurobi = joinpath(
LazyArtifacts.artifact"gurobilinux64",
"gurobi1000/linux64/lib/libgurobi100.so",
"gurobi1100/linux64/lib/libgurobi110.so",
)
else
error("""
Expand Down

0 comments on commit f4477c9

Please sign in to comment.