Check whether your package is in the win-builder queue.
winbuilder_queue(
pkg = NULL,
folders = c("R-release", "R-devel", "R-oldrelease")
)
Optionally provide a vector of package names to limits the results to these packages.
Which folders of the win-builder queue do you want to inspect? Default: the 3 architectures win-builder provides.
A tibble
with the following columns:
package name
package version
the folder indicating the R version that will be used to perform the checks
the date and time at which the package tarball was uploaded on win-builder
the size of the package tarball
To check whether your package has successfully been submitted to
win-builder, or to check whether there is unusual delay in processing
packages submitted to win-builder, winbuilder_queue
allows you to inspect
the packages that are in the queue to be processed by the win-builder
service.
Maëlle Salmon, 2020. "Everything you should know about WinBuilder" https://blog.r-hub.io/2020/04/01/win-builder/
Uwe Ligges. Building and checking R source packages for Windows. https://win-builder.r-project.org/
if (FALSE) {
## Get all the packages in the win-builder queue
winbuilder_queue()
## Check if the 'dplyr' package is in the win-builder queue
winbuilder_queue(pkg = "dplyr")
## Check which packages are in the R-devel queue
winbuilder_queue(folders = "R-devel")
}