Skip to content

Commit

Permalink
Resolve linkcheck problems with Ipopt
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsipher committed Jun 21, 2021
1 parent b8c5c02 commit 8b1ab87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ jobs:
- uses: julia-actions/setup-julia@latest
with:
version: '1.6' # Build documentation on Julia 1.6
- name: Fix curl mismatch # (https://stackoverflow.com/questions/30017397/error-curl-usr-local-lib-libcurl-so-4-no-version-information-available-requ)
run: |
sys_libcurl="$(find /usr/lib/x86_64-linux-gnu -maxdepth 1 -name "libcurl\.so\.*" | sort -n | tail -1)"
julia_lib="$(dirname "$(which julia)")/../lib/julia"
julia_libcurl="$(find $julia_lib -maxdepth 1 -name "libcurl\.so\.[0-9]" | sort -n | tail -1)"
sudo rm $julia_libcurl
sudo ln -s $sys_libcurl $julia_libcurl
- name: Install plotting dependencies # For enabling GR.jl (used by Plots.jl)
run: sudo apt-get install -y qt5-default
- name: Install julia dependencies
Expand Down
3 changes: 2 additions & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[deps]
InfiniteOpt = "20393b10-9daf-11e9-18c9-8db751c92c57"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand All @@ -13,6 +14,6 @@ julia = "1.6"
Documenter = "0.27"
Literate = "2.8"
Clp = "0.8"
Ipopt = "0.6"
Ipopt = "0.7"
Distributions = "0.25"
Plots = "1"

0 comments on commit 8b1ab87

Please sign in to comment.