-
Notifications
You must be signed in to change notification settings - Fork 9
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
install error on Ubuntu 22.04.4 using GitHub Actions for R CMD check
#41
Comments
Same for me |
Same here |
Also fails to install previous versions, upstream changes in Ubuntu to blame?
|
Solution: sudo apt install libharfbuzz-dev libfribidi-dev Would save people time if that were documented in the README and error messages on fail. |
These are not new requirements nor has anything changed in textshaping to cause these to suddenly not install so I suspect it must be something upstream that I have no control over. FWIW, all these system dependencies are clearly stated in the DESCRIPTION file and lack of any of them will cause an install error message indicating the issue so I don't think textshaping should do more |
Fair, I did notice a message saying to install these later. This issue can probably be closed. |
@isaactpetersen, @thomasp85, @Robinlovelace, Normally, build configurations are written in a way that turns a failure to find a requirement into a fatal error at the time of configuration before the actual compilation of the project occurs. That is the case for example with GNU An automated check for spack/spack#47008 ran into a similar issue with the same error message: We prepared harfbuzz and fribidi in this build, but it appears that in addition, Thankfully, due to finding this report, the submitter of the PR during which this error was triggered was able to point me here and that made me guess that missing However, it would be more favorable, if |
I'm using GitHub Actions to check my package for CRAN via
R CMD check
. However, theR CMD check
fails on Ubuntu due to inability to installtextshaping
.R CMD check
succeeds on Windows or Mac. The operating system version for Ubuntu is 22.04.4. Here is the error:This error seems similar to ones in prior reported issues:
Here is my workflow file: https://github.com/DevPsyLab/petersenlab/blob/main/.github/workflows/R-CMD-check.yaml
Here is a link to a failed job: https://github.com/DevPsyLab/petersenlab/actions/runs/8869922824/job/24351131206
I'm attaching the log output in the following text file: 00check.log
Any help would be greatly appreciated. If I need to run addition Linux code in the workflow file, it'd be helpful to know what to add and where. Thanks in advance!
The text was updated successfully, but these errors were encountered: