winbuilder_queue: Show the win-builder queue

View source: R/winbuilder_queue.R

winbuilder_queueR Documentation

Show the win-builder queue

Description

Check whether your package is in the win-builder queue.

Usage

winbuilder_queue(
  pkg = NULL,
  folders = c("R-release", "R-devel", "R-oldrelease")
)

Arguments

pkg

Optionally provide a vector of package names to limits the results to these packages.

folders

Which folders of the win-builder queue do you want to inspect? Default: the 3 architectures win-builder provides.

Details

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.

Value

A tibble with the following columns:

package

package name

version

package version

folder

the folder indicating the R version that will be used to perform the checks

time

the date and time at which the package tarball was uploaded on win-builder

size

the size of the package tarball

References

Examples

## Not run: 
  ## 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")

## End(Not run)

fmichonneau/foghorn documentation built on Feb. 22, 2024, 1:38 a.m.