Skip to content
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

pkgdown docs #18

Open
robkooper opened this issue Feb 6, 2020 · 7 comments
Open

pkgdown docs #18

robkooper opened this issue Feb 6, 2020 · 7 comments
Assignees

Comments

@robkooper
Copy link
Member

I don't think we are still generating these? If this is generated do we want to do this as part of the build process? Do we want to delete all the docs in base/*/docs?

@mdietze
Copy link
Member

mdietze commented Feb 8, 2020

FWIW, I think we should fix the build on these. Could we link their build to the Travis build GitHub Actions? like we do with the rest of the documentation?

@dlebauer

This comment has been minimized.

@mdietze

This comment has been minimized.

@dlebauer
Copy link
Member

dlebauer commented Feb 18, 2025

Implementation ideas

1. create build_pkgdown.R:

args <- commandArgs(trailingOnly = TRUE)
if (length(args) == 0) {
  stop("No package names provided. Please pass package names as arguments.")
}
packages <- args
PEcAn.logger::logger.info("Building pkgdown docs for: ", paste(packages, collapse = ", "))

for (pkg in packages) {
  message("Building pkgdown site for: ", pkg)
  pkgdown::build_site(pkg)
  
  # Copy built site folder for the book.
  dest <- file.path("book_source/pkgdocs", pkg)
  if (!dir.exists(dest)) { # this prob. only needs to be done once per pkg
    dir.create(dest, recursive = TRUE, warn = FALSE)
  }
  
  source_docs <- file.path(pkg, "docs")
  
  file.copy(from = source_docs, to = dest, recursive = TRUE, overwrite = TRUE)
}

2. Update Makefile

  • There is a list of packages in the first 11 lines of GitHub.com/pecanproject/pecan Makefile, these are concatenated into the variable ALL_PKGS. Can also get packages with PEcAn.all::pecan_version()
  • Add:
pkgdocs:
    Rscript build_pkgdown.R $(ALL_PKGS)
  • add pkgdocs to .PHONY

3. Add to build

  • update book_source/Makefile and / or .github/workflows/book.yml (or create new workflow?)

See also

PecanProject/pecan#3098 (comment)

the package documentation pages are out of date because they are not updated by the Github Actions build process the way the long-form PEcAn book is.

Anyone who wants to work on this could start by understanding how book.yml works and then work on modifying it to include compilation of the package docs.

@ashiklom it looks like you were one of the last to work on the pkgdown docs, back when we were using Travis. Any advice appreciated!

@divine7022
Copy link
Contributor

Issue fixed in PecanProject/pecan#3454

@allgandalf
Copy link
Collaborator

I think we are now working on this issue as part of :

@allgandalf
Copy link
Collaborator

@dlebauer should we transfer this issue to pecan repository ? , we can do it following this button

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants