-
Notifications
You must be signed in to change notification settings - Fork 217
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
setup-r-dependencies@v1
fails due to missing glpk.h
header on Windows
#430
Comments
r-lib/actions/setup-r-dependencies@v1
fails due to missing glpk.h
header on Windowssetup-r-dependencies@v1
fails due to missing glpk.h
header on Windows
No, windows system dependencies are not automatically installed by these workflows, only linux ones. |
@mihaiconstantin, I have seen similar situations in the past: As you can see from the log,
which requires This can happen during some couple of days after a new version lands on CRAN, for which Windows binaries are not available yet (on CRAN / RSPM). Note sure there is any viable workaround, hope this still helps. |
An alternative would be installing GLPK in the meantime for your builds, e.g. |
Thanks a lot for clarifying this @riccardoporreca and @jimhester. Your explanations and suggestions make sense. I’ll go ahead and close this as I now understand it is not really an issue with the dependencies action. |
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue and include a link to this issue |
Describe the bug
My apologies if this is not the right place, but the job in
check-standard.yml
fails on Windows due to a missing header:Shouldn't this also be installed as part of
r-lib/actions/setup-r@v1
?To Reproduce
The problem seems to be triggered by the installation of the
igraph
package which requiresglpk
. See this link for detailed logs.Expected behavior
Successful installation of
igraph
R
package duringr-lib/actions/setup-r-dependencies@v1
.Additional context
I tested the above using
devtools::check_win_release()
anddevtools::check_win_devel()
, andglpk
was in good order.The text was updated successfully, but these errors were encountered: