-
Notifications
You must be signed in to change notification settings - Fork 756
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_deps issue on R-devel OSX #1530
Comments
@jimhester can you please have a look at this travis issue? |
The build log doesn't provide any clues unfortunately, but this may be due to you running |
Same issue after removing
Is there any way to add additional verbosity to the log that would be helpful? Or a way to test this out locally? I am happy to contribute, but am ignorant of how to test these sorts of builds locally. If this is an issue with Config on most recent build:
|
Try just using a install block for those dependencies explicitly and remove devtools out of the equation entirely. install:
- R -e 'install.packages(c("rJava", "xlsxjars"))' |
The install block (required all dependencies) was a successful workaround for the devtools issue. I am out of ideas for what might be the root issue, as it does not look like devtools even tries to install the packages before failing. I also tried moving the packages from It is definitely less than ideal to have to maintain a list of all dependencies in DESCRIPTION, as well as in .travis.yml, when devtools works great on all other OS / version combinations. |
@jimhester I am fairly concerned this might be a devtools bug that is worth re-opening. I created a basic package with RStudio, and the build on osx with R 3.5 is failing with the same problems. I tested It seems that for some reason, devtools is not installing dependencies appropriately on osx / R 3.5. The hope is that this would only be due to it being a "devel" release at present and perhaps something about how CRAN is built, but it might be worth doing some deeper digging to be sure. I am unsure of the best way to do so or what next steps might be beneficial. |
Related to #1370, perhaps, although this problem is only on OSX and the devel version of R, so not sure whether there is any relationship. |
@hadley @jimhester I think this ought to be reopened and addressed, as it suggests a universal problem with |
More OSX R-devel build failures on otherwise good builds... not sure if this is related or not. Maybe R-devel is having problems on OSX and
Confirmed that the same failure occurred on my previous test (fail is on R install now, before |
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
Hello,
I am using Travis CI to test the
xlsx
package on OSX with R-devel. The build has been successful on all combinations of OS / versions of R except (OSX, R-devel). The failing step seems to be related todevtools::install_deps
, which seems to somehow be missing and not installing the packages that are currently inDepends
.Both packages are available from CRAN (
rJava
andxlsxjars
) and again, the build is successful elsewhere (even R-devel on UNIX), which suggests to me that this is something perhaps to be addressed in the new version of R on OSX.Not sure how to be of any assistance with this other than providing the log:
and the failing step:
The text was updated successfully, but these errors were encountered: