rOpenSci | rOpenSci docs are now built on r-universe

rOpenSci docs are now built on r-universe

This post is part of a series of technotes about r-universe, a new umbrella project by rOpenSci under which we experiment with various ideas for improving publication and discovery of research software in R. As the project evolves, we will post updates to document features and technical details. For more information, visit the r-universe project page.

TLDR: As of today, the pkgdown sites for all rOpenSci packages on our docs server are built on r-universe. This is an internal change; no action is required for package maintainers.

🔗 From Jenkins to r-universe

For the past 2 years we have been using a Jenkins server to automatically build the pkgdown sites for all rOpenSci packages, which get published on https://docs.ropensci.org. By centralizing this process, we ensure that up-to-date documentation for all rOpenSci packages is available from a consistent URL with our personal branding, and without maintenance work for our package maintainers.

Jenkins has served us very well to get this off the ground, because it is highly configurable and makes it easy to manage continuous integration (CI) for hundreds of projects at once.

However Jenkins took quite some maintenance because it requires managing a private server, which needs configuration, backups, updates, etc. So we are happy to fold this task into r-universe, such that the pkgdown sites for all rOpenSci packages are now built together with the binary packages and articles, in single system that runs on GitHub public infrastructure.

🔗 How it works

Building pkgdown documentation is now just another step in the r-universe workflow which automatically runs each hour for every package in rOpenSci that has updates in its default branch (master/main). When the build is successful, the pkgdown site is immediately deployed to our docs server.

Screenshot of the diagram of steps in the r-universe workflow. The steps are building package source, building and deploying the GitHub documentation, setting the GitHub commit status.

After each build, the workflow sets the “commit status” (red/green check) in the package repository on the target commit. If the build failed, the ‘details’ link will directly take you to the build logs.

Screenshot of a GitHub repository after clicking on the green arrow next to the hash of the latest commit. This opened a small card with different checks including the docs building status.

The r-universe dashboard for also shows a new column called “docs” which indicates for all our packages if the pkgdown site was successfully built for the latest commit.

🔗 Debugging failures

If your package documentation fails to build (e.g. due to a bug in your vignettes) you can inspect the pkgdown build logs on GitHub. Navigate to the workflow output either through the dashboard or the red cross in the package commit status, and click on “build package documentation”.

Screenshot of a workflow that shows in red that the documentation has failed to build

If this does not reveal the problem, you can replicate the entire build locally using the same docker image as used by our workflow. The container takes only one argument: the git url of an R package repository. For example to build the pkgdown site for the pdftools package:

# Build docs for 'pdftools'
docker run runiverse/build-docs "https://github.com/ropensci/pdftools"

The runiverse/build-docs docker image has R and pkgdown preinstalled, and automatically installs other dependencies before building the pkgdown site. Alternatively, if you manually want to simulate the entire process outside of docker, you need the rodocs package:

# Build pdftools documentation locally
remotes::install_github('r-universe-org/build-docs')
rodocs::build_site("https://github.com/ropensci/pdftools")

The rodocs package contains the plumbing code that automatically installs package dependencies and then calls pkgdown::build_site() using our custom rOpenSci pkgdown theme.

🔗 What really changes

From the outside, the switch from Jenkins to r-universe does not change anything. Documentation for all rOpenSci packages will still be built and deployed automatically to https://docs.ropensci.org.

We hope that building our docs on r-universe will reduce complexity and maintenance work, and make the processes more transparent and easier to understand. There is now a single build workflow that generates package documentation, binaries and articles, and we can add more tasks to this list.

Everything runs on public GitHub infrastructure, so anyone can inspect the code that runs for each step in the workflow, and the sources of supporting R packages and docker images. And if the system works well for rOpenSci, we can try to support this functionality for other users and organizations in r-universe.


Start discussion