capture arch in metadata table
This commit is contained in:
parent
6710eb3d36
commit
66b0a1046a
3 changed files with 40 additions and 20 deletions
|
|
@ -13,7 +13,9 @@ archive_package(
|
|||
endpoint = "https://s3.eu-central-003.backblazeb2.com",
|
||||
region = "eu-central-003",
|
||||
bucket = "devxy-arm64-r-binaries",
|
||||
pause = NULL
|
||||
pause = NULL,
|
||||
arch = NULL,
|
||||
debug = FALSE
|
||||
)
|
||||
}
|
||||
\description{
|
||||
|
|
@ -21,5 +23,6 @@ Archive packages in CRAN-like repositories
|
|||
}
|
||||
\examples{
|
||||
archive_package("AATtools", codename = "rhel9")
|
||||
archive_package("adw", codename = "rhel8", arch = "amd64")
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,11 +13,14 @@ build_binary_package(
|
|||
local_build_root = "/root",
|
||||
local_clone_dir = "/tmp",
|
||||
platform = NULL,
|
||||
arch = NULL,
|
||||
install_system_dependencies = TRUE,
|
||||
deps_verbose = FALSE,
|
||||
debug = FALSE,
|
||||
force = FALSE,
|
||||
archive = TRUE
|
||||
archive = TRUE,
|
||||
future_strategy = "multisession",
|
||||
future_workers = 2
|
||||
)
|
||||
}
|
||||
\description{
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ store_build_metadata(
|
|||
tag,
|
||||
platform,
|
||||
error_occurred,
|
||||
arch,
|
||||
force = FALSE,
|
||||
error = NA,
|
||||
build_duration = NA,
|
||||
|
|
|
|||
Loading…
Reference in a new issue