You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dlebauer asked whether vignettes are built during the CI build, and we think the answer is "no, but it should be", possibly during the post-build documentation step instead of during testing. Need to investigate and fix if needed.
Context
Possible Implementation
The text was updated successfully, but these errors were encountered:
No, the current build definitely does not build vignettes
Will need to at least add VignetteBuilder: knitr and Suggests: knitr to all package descriptions, and add ... vignette: > %\VignetteIndexEntry{ ... boilerplate to all vignette Rmd files.
Do we want to add the built vignettes or gitignore them? From my quick survey of R packages on GitHub, gitignore seems most common.
Not sure yet how much build time this will add, but likely substantial. May want to do this as a separate build stage, e.g. CI build keeps skipping vignettes at installation, then check separately with devtools::build_vignettes.
Separate issue from the CI build: do we want the vignettes by default during a bare-metal UNIX install? How about the Docker images?
Description
@dlebauer asked whether vignettes are built during the CI build, and we think the answer is "no, but it should be", possibly during the post-build documentation step instead of during testing. Need to investigate and fix if needed.
Context
Possible Implementation
The text was updated successfully, but these errors were encountered: