add sqlite db for metadata build info
This commit is contained in:
parent
de2d7878e3
commit
fe99870a94
6 changed files with 307 additions and 40 deletions
|
|
@ -12,6 +12,8 @@ Roxygen: list(markdown = TRUE)
|
||||||
RoxygenNote: 7.3.1
|
RoxygenNote: 7.3.1
|
||||||
Imports:
|
Imports:
|
||||||
cli,
|
cli,
|
||||||
|
DBI,
|
||||||
|
dplyr,
|
||||||
gert,
|
gert,
|
||||||
lubridate,
|
lubridate,
|
||||||
magrittr,
|
magrittr,
|
||||||
|
|
@ -20,4 +22,5 @@ Imports:
|
||||||
pkgbuild,
|
pkgbuild,
|
||||||
progressr,
|
progressr,
|
||||||
purrr,
|
purrr,
|
||||||
|
RSQLite,
|
||||||
xml2
|
xml2
|
||||||
|
|
|
||||||
14
NAMESPACE
14
NAMESPACE
|
|
@ -1,7 +1,21 @@
|
||||||
# Generated by roxygen2: do not edit by hand
|
# Generated by roxygen2: do not edit by hand
|
||||||
|
|
||||||
import(progressr)
|
import(progressr)
|
||||||
|
importFrom(DBI,dbConnect)
|
||||||
|
importFrom(DBI,dbDisconnect)
|
||||||
|
importFrom(DBI,dbExecute)
|
||||||
|
importFrom(DBI,dbGetQuery)
|
||||||
|
importFrom(DBI,dbListTables)
|
||||||
|
importFrom(DBI,dbWriteTable)
|
||||||
|
importFrom(RSQLite,SQLite)
|
||||||
importFrom(cli,cli_alert_info)
|
importFrom(cli,cli_alert_info)
|
||||||
|
importFrom(dplyr,all_vars)
|
||||||
|
importFrom(dplyr,filter)
|
||||||
|
importFrom(dplyr,filter_at)
|
||||||
|
importFrom(dplyr,group_by)
|
||||||
|
importFrom(dplyr,n)
|
||||||
|
importFrom(dplyr,summarise)
|
||||||
|
importFrom(dplyr,vars)
|
||||||
importFrom(future,plan)
|
importFrom(future,plan)
|
||||||
importFrom(future.apply,future_mapply)
|
importFrom(future.apply,future_mapply)
|
||||||
importFrom(gert,git_config_set)
|
importFrom(gert,git_config_set)
|
||||||
|
|
|
||||||
155
R/build-metadata.R
Normal file
155
R/build-metadata.R
Normal file
|
|
@ -0,0 +1,155 @@
|
||||||
|
#' @importFrom DBI dbConnect dbDisconnect dbWriteTable dbGetQuery dbExecute
|
||||||
|
#' @importFrom RSQLite SQLite
|
||||||
|
store_build_metadata <- function(
|
||||||
|
package_name, tag, platform,
|
||||||
|
error_occurred, error) {
|
||||||
|
# Create a new SQLite connection
|
||||||
|
con <- dbConnect(RSQLite::SQLite(), dbname = "metadata.db")
|
||||||
|
|
||||||
|
dbExecute(con, "BEGIN TRANSACTION")
|
||||||
|
|
||||||
|
# Create the "metadata" table if it does not exist
|
||||||
|
dbExecute(con, "CREATE TABLE IF NOT EXISTS metadata (
|
||||||
|
package_name TEXT,
|
||||||
|
tag TEXT,
|
||||||
|
platform TEXT,
|
||||||
|
error_occurred BOOLEAN,
|
||||||
|
build_timestamp TEXT
|
||||||
|
)")
|
||||||
|
|
||||||
|
# Create an index on the package_name and tag columns
|
||||||
|
dbExecute(con, "CREATE INDEX IF NOT EXISTS idx_metadata_package_tag ON metadata(package_name, platform)")
|
||||||
|
|
||||||
|
# Check if an entry with the same package_name and tag already exists
|
||||||
|
existing_entries <- dbGetQuery(con, paste0(
|
||||||
|
"SELECT * FROM metadata WHERE package_name = '",
|
||||||
|
package_name, "' AND tag = '", tag, "'"
|
||||||
|
))
|
||||||
|
|
||||||
|
if (nrow(existing_entries) >= 1) {
|
||||||
|
cli::cli_alert_info("{.fun store_build_metadata}: Build metadata for {.field {package_name}} {.field {tag}} already exists.")
|
||||||
|
} else {
|
||||||
|
cli::cli_alert_info("{.fun store_build_metadata}: Storing build metadata for {.field {package_name}} {.field {tag}}.")
|
||||||
|
# Create a data frame with the metadata
|
||||||
|
metadata <- data.frame(
|
||||||
|
package_name = package_name,
|
||||||
|
tag = tag,
|
||||||
|
platform = platform,
|
||||||
|
error_occurred = error_occurred,
|
||||||
|
build_timestamp = format(Sys.time(), "%Y-%m-%d")
|
||||||
|
)
|
||||||
|
# Write the data frame to the SQLite database
|
||||||
|
dbWriteTable(con, "metadata", metadata, append = TRUE)
|
||||||
|
}
|
||||||
|
|
||||||
|
dbExecute(con, "COMMIT")
|
||||||
|
|
||||||
|
# Close the SQLite connection
|
||||||
|
dbDisconnect(con)
|
||||||
|
}
|
||||||
|
|
||||||
|
#' @importFrom DBI dbConnect dbGetQuery
|
||||||
|
#' @importFrom RSQLite SQLite
|
||||||
|
#' @importFrom dplyr filter_at vars all_vars
|
||||||
|
query_build_metadata <- function(package_name = NULL, tag = NULL, platform = NULL,
|
||||||
|
error_occurred = NULL, error = NULL, build_timestamp = NULL) {
|
||||||
|
# Create a new SQLite connection
|
||||||
|
con <- dbConnect(RSQLite::SQLite(), dbname = "metadata.db")
|
||||||
|
|
||||||
|
# Read the entire table
|
||||||
|
metadata <- dbGetQuery(con, "SELECT * FROM metadata")
|
||||||
|
|
||||||
|
# Close the SQLite connection
|
||||||
|
dbDisconnect(con)
|
||||||
|
|
||||||
|
# Filter the data frame based on the given parameters
|
||||||
|
filter_conditions <- list(
|
||||||
|
package_name = package_name, tag = tag, platform = platform,
|
||||||
|
error_occurred = error_occurred, error = error,
|
||||||
|
build_timestamp = build_timestamp
|
||||||
|
)
|
||||||
|
|
||||||
|
# Remove NULL elements from the list
|
||||||
|
filter_conditions <- filter_conditions[!sapply(filter_conditions, is.null)]
|
||||||
|
|
||||||
|
# Apply the filter conditions if any exist
|
||||||
|
if (length(filter_conditions) > 0) {
|
||||||
|
metadata <- dplyr::filter_at(
|
||||||
|
metadata, dplyr::vars(names(filter_conditions)),
|
||||||
|
dplyr::all_vars(. == filter_conditions[[.]])
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return(metadata)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#' @importFrom DBI dbConnect dbDisconnect dbWriteTable dbGetQuery dbExecute dbListTables
|
||||||
|
#' @importFrom RSQLite SQLite
|
||||||
|
#' @importFrom dplyr group_by summarise filter n
|
||||||
|
build_metadata_summary <- function(package_name, platform) {
|
||||||
|
# Create a new SQLite connection
|
||||||
|
con <- dbConnect(RSQLite::SQLite(), dbname = "metadata.db")
|
||||||
|
|
||||||
|
metadata <- dbGetQuery(con, paste0(
|
||||||
|
"SELECT * FROM metadata WHERE package_name = '", package_name,
|
||||||
|
"' AND platform = '", platform, "'"
|
||||||
|
))
|
||||||
|
|
||||||
|
print(sprintf("Package: %s", package_name))
|
||||||
|
print(sprintf("Platform: %s", platform))
|
||||||
|
|
||||||
|
# Calculate the summary
|
||||||
|
summary <- metadata %>%
|
||||||
|
group_by(package_name, platform) %>%
|
||||||
|
summarise(
|
||||||
|
successful_builds = sum(!error_occurred),
|
||||||
|
unsuccessful_builds = sum(error_occurred),
|
||||||
|
total_builds = n(),
|
||||||
|
percentage_successful_builds = round(successful_builds / total_builds * 100, 2)
|
||||||
|
)
|
||||||
|
|
||||||
|
print("DEBUG")
|
||||||
|
print(summary)
|
||||||
|
|
||||||
|
# Check if the metadata_summary table exists
|
||||||
|
if ("metadata_summary" %in% dbListTables(con)) {
|
||||||
|
# Update the row for the specified package
|
||||||
|
dbExecute(con, paste0(
|
||||||
|
"UPDATE metadata_summary SET successful_builds = ", summary$successful_builds,
|
||||||
|
", unsuccessful_builds = ", summary$unsuccessful_builds,
|
||||||
|
", total_builds = ", summary$total_builds,
|
||||||
|
", percentage_successful_builds = ", summary$percentage_successful_builds,
|
||||||
|
" WHERE package_name = '", package_name,
|
||||||
|
"' AND platform = '", platform, "'"
|
||||||
|
))
|
||||||
|
} else {
|
||||||
|
# Write the summary to a new table in the SQLite database
|
||||||
|
dbWriteTable(con, "metadata_summary", summary)
|
||||||
|
}
|
||||||
|
|
||||||
|
# Close the SQLite connection
|
||||||
|
dbDisconnect(con)
|
||||||
|
}
|
||||||
|
|
||||||
|
#' @importFrom RSQLite SQLite
|
||||||
|
query_metadata_summary <- function(package_name = NULL, platform = NULL) {
|
||||||
|
# Create a new SQLite connection
|
||||||
|
con <- dbConnect(RSQLite::SQLite(), dbname = "metadata.db")
|
||||||
|
|
||||||
|
# If both package_name and platform are NULL, return the full table
|
||||||
|
if (is.null(package_name) && is.null(platform)) {
|
||||||
|
summary <- dbGetQuery(con, "SELECT * FROM metadata_summary")
|
||||||
|
} else {
|
||||||
|
# Query the metadata_summary table for the specified package and platform
|
||||||
|
summary <- dbGetQuery(con, paste0(
|
||||||
|
"SELECT * FROM metadata_summary WHERE package_name = '",
|
||||||
|
package_name, "' AND platform = '", platform, "'"
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
# Close the SQLite connection
|
||||||
|
dbDisconnect(con)
|
||||||
|
|
||||||
|
return(summary)
|
||||||
|
}
|
||||||
|
|
@ -8,8 +8,9 @@ build_binary_package <- function(package_name, tag = NULL, codename = NULL,
|
||||||
r_version_minor = NULL, build_for_minor = TRUE,
|
r_version_minor = NULL, build_for_minor = TRUE,
|
||||||
local_build_root = "/root",
|
local_build_root = "/root",
|
||||||
local_clone_dir = "/tmp",
|
local_clone_dir = "/tmp",
|
||||||
pak_pkg_syrsreqs_platform = "redhat-9",
|
platform = "redhat-9",
|
||||||
install_system_dependencies = TRUE) {
|
install_system_dependencies = TRUE) {
|
||||||
|
cli::cli_h2("Preparations")
|
||||||
codename <- set_codename(codename)
|
codename <- set_codename(codename)
|
||||||
|
|
||||||
if (is.null(r_version_minor)) {
|
if (is.null(r_version_minor)) {
|
||||||
|
|
@ -27,11 +28,6 @@ build_binary_package <- function(package_name, tag = NULL, codename = NULL,
|
||||||
|
|
||||||
cli::cli_h2("Installing system dependencies")
|
cli::cli_h2("Installing system dependencies")
|
||||||
|
|
||||||
### Install system dependencies
|
|
||||||
if (install_system_dependencies) {
|
|
||||||
install_package_system_dependencies(package_name, pak_pkg_syrsreqs_platform, tag, local_clone_dir_single)
|
|
||||||
}
|
|
||||||
|
|
||||||
gert::git_config_global_set("advice.detachedHead", "false")
|
gert::git_config_global_set("advice.detachedHead", "false")
|
||||||
|
|
||||||
if (is.null(tag)) {
|
if (is.null(tag)) {
|
||||||
|
|
@ -46,63 +42,103 @@ build_binary_package <- function(package_name, tag = NULL, codename = NULL,
|
||||||
tag <- all_tags$name
|
tag <- all_tags$name
|
||||||
package_name <- rep(package_name, length(tag))
|
package_name <- rep(package_name, length(tag))
|
||||||
|
|
||||||
cli::cli_alert_info("Building binaries for {.pkg {package_name[[1]]}} with tags {.env {tag}}.")
|
# if (reset_db_metadata) {
|
||||||
|
# cli::cli_alert_warning("{.fun build_binary_package}: Resetting metadata for {.pkg {package_name}}.")
|
||||||
|
|
||||||
|
# con <- dbConnect(RSQLite::SQLite(), dbname = "metadata_summary.db")
|
||||||
|
# # Remove all entries from the metadata_summary table
|
||||||
|
# dbExecute(con, "DELETE FROM metadata_summary")
|
||||||
|
# }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
### Install system dependencies
|
||||||
|
if (install_system_dependencies) {
|
||||||
|
install_package_system_dependencies(package_name, tag, platform, local_clone_dir)
|
||||||
|
}
|
||||||
|
|
||||||
|
t1 <- Sys.time()
|
||||||
cli::cli_h2("Building")
|
cli::cli_h2("Building")
|
||||||
|
|
||||||
|
cli::cli_alert_info("Building binaries for {.pkg {package_name[[1]]}} with tags {.strong {tag}}.")
|
||||||
|
|
||||||
# devtools::install(quiet = TRUE)
|
# devtools::install(quiet = TRUE)
|
||||||
|
|
||||||
# Set up the progress handler
|
# Set up the progress handler
|
||||||
progressr::handlers(global = TRUE)
|
progressr::handlers(global = TRUE)
|
||||||
progressr::handlers("cli")
|
progressr::handlers("cli", "debug")
|
||||||
|
|
||||||
# cli::cli_alert("{package_name}")
|
|
||||||
# cli::cli_alert("{tag}")
|
|
||||||
|
|
||||||
out <- progressr::with_progress({
|
out <- progressr::with_progress({
|
||||||
p <- progressr::progressor(along = tag)
|
p <- progressr::progressor(along = tag)
|
||||||
future_mapply(function(x, y) {
|
future_mapply(function(x, y) {
|
||||||
p()
|
tryCatch(
|
||||||
build_single_tag(x, y, dir_out_bin, local_clone_dir)
|
{
|
||||||
|
p()
|
||||||
|
build_single_tag(x, y, dir_out_bin, local_clone_dir)
|
||||||
|
store_build_metadata(x, y, platform, FALSE)
|
||||||
|
},
|
||||||
|
error = function(e) {
|
||||||
|
message("Error in processing package ", x, " with tag ", y, ": ")
|
||||||
|
unlink(local_clone_dir_single, force = TRUE, recursive = TRUE)
|
||||||
|
store_build_metadata(x, y, platform, TRUE)
|
||||||
|
}
|
||||||
|
)
|
||||||
}, package_name, tag, future.seed = TRUE)
|
}, package_name, tag, future.seed = TRUE)
|
||||||
})
|
})
|
||||||
|
|
||||||
# future.apply::future_mapply(build_single_tag,
|
# round(Sys.time() - t1, 2)}} {units(difftime(Sys.time(), t1))}
|
||||||
# package_name = package_name, tag = tag,
|
|
||||||
# MoreArgs = list(
|
total_build_time <- round(Sys.time() - t1, 2)
|
||||||
# dir_out_bin = dir_out_bin,
|
cli::cli_alert_info("Execution time for {.pkg {package_name[[1]]}} ({length(tag)} tags): {.strong {total_build_time} {units(difftime(Sys.time(), t1))}}.")
|
||||||
# local_clone_dir = local_clone_dir
|
|
||||||
# ),
|
# add average_build_time_per_tag to metadata summary table
|
||||||
# future.seed = TRUE
|
average_build_time_per_tag <- round(total_build_time / length(tag), 2)
|
||||||
# )
|
con <- dbConnect(RSQLite::SQLite(), dbname = "metadata.db")
|
||||||
|
# Check if the entry exists in the metadata_summary table
|
||||||
|
# Check if a valid entry exists in the metadata_summary table
|
||||||
|
entry <- dbGetQuery(con, paste0(
|
||||||
|
"SELECT average_build_time_per_tag FROM metadata_summary WHERE package_name = '", package_name[[1]],
|
||||||
|
"' AND platform = '", platform, "'"
|
||||||
|
))
|
||||||
|
# If the entry does not exist or is not valid, entry will be NULL or NA
|
||||||
|
entry_exists <- !is.null(entry$average_build_time_per_tag) && !is.na(entry$average_build_time_per_tag)
|
||||||
|
|
||||||
|
# If the entry does not exist, update the average_build_time_per_tag
|
||||||
|
if (!entry_exists) {
|
||||||
|
dbExecute(con, paste0(
|
||||||
|
"UPDATE metadata_summary SET average_build_time_per_tag = ", average_build_time_per_tag,
|
||||||
|
" WHERE package_name = '", package_name[[1]], "' AND platform = '", platform, "'"
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
cli::cli_alert_info("{.fun build_binary_package}: Building/updating metadata summary for {.pkg {package_name[[1]]}}.")
|
||||||
|
build_metadata_summary(package_name[[1]], platform)
|
||||||
|
|
||||||
return(invisible(TRUE))
|
return(invisible(TRUE))
|
||||||
}
|
}
|
||||||
|
|
||||||
install_package_system_dependencies <- function(package_name,
|
install_package_system_dependencies <- function(package_name,
|
||||||
pak_pkg_syrsreqs_platform = "redhat-9",
|
|
||||||
tag,
|
tag,
|
||||||
local_clone_dir_single) {
|
platform = "redhat-9",
|
||||||
cli::cli_alert_info("{.fun install_package_system_dependencies}: Cloning package {.env {package_name}} with tag {.env {tag}}.")
|
local_clone_dir) {
|
||||||
|
cli::cli_alert_info("{.fun install_package_system_dependencies}: Cloning package {.pkg {package_name[1]}} with tag {.strong {tag}}.")
|
||||||
|
|
||||||
|
local_clone_dir_single <- sprintf("%s/%s_%s", local_clone_dir, package_name[1], tail(tag, 1))
|
||||||
|
|
||||||
if (!dir.exists(local_clone_dir_single)) {
|
if (!dir.exists(local_clone_dir_single)) {
|
||||||
system2("git", args = c(
|
system2("git", args = c(
|
||||||
"clone", "-q", sprintf("--branch=%s", tag),
|
"clone", "-q", sprintf("--branch=%s", tail(tag, 1)),
|
||||||
sprintf("https://github.com/cran/%s", package_name), local_clone_dir_single
|
sprintf("https://github.com/cran/%s", package_name[1]), local_clone_dir_single
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
Sys.setenv(PKG_SYSREQS_PLATFORM = pak_pkg_syrsreqs_platform)
|
Sys.setenv(PKG_SYSREQS_PLATFORM = platform)
|
||||||
Sys.setenv(PKG_SYSREQS = TRUE)
|
Sys.setenv(PKG_SYSREQS = TRUE)
|
||||||
Sys.setenv(PKG_SYSREQS_VERBOSE = TRUE)
|
Sys.setenv(PKG_SYSREQS_VERBOSE = TRUE)
|
||||||
pak::local_install_dev_deps(sprintf("%s", local_clone_dir_single))
|
pak::local_install_dev_deps(sprintf("%s", local_clone_dir_single))
|
||||||
|
|
||||||
cli::cli_alert_info("{.fun install_package_system_dependencies}: 4. Removing {.path {local_clone_dir_single}}.")
|
cli::cli_alert_info("{.fun install_package_system_dependencies}: 4. Removing {.path {local_clone_dir_single}}.")
|
||||||
# delete clone again as we need a full clone of the repo when not only building a single tag
|
|
||||||
if (!is.null(tag)) {
|
unlink(sprintf("%s", local_clone_dir_single), recursive = TRUE, force = TRUE)
|
||||||
unlink(sprintf("%s", local_clone_dir_single), recursive = TRUE, force = TRUE)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -111,18 +147,17 @@ install_package_system_dependencies <- function(package_name,
|
||||||
build_single_tag <- function(package_name, tag = NULL,
|
build_single_tag <- function(package_name, tag = NULL,
|
||||||
dir_out_bin,
|
dir_out_bin,
|
||||||
local_clone_dir) {
|
local_clone_dir) {
|
||||||
|
cli::cli_alert_info("{.fun build_single_tag}: 1. Cloning package {.pkg {package_name}} with tag {.strong {tag}}.")
|
||||||
|
|
||||||
local_clone_dir_single <- sprintf("%s/%s_%s", local_clone_dir, package_name, tag)
|
local_clone_dir_single <- sprintf("%s/%s_%s", local_clone_dir, package_name, tag)
|
||||||
|
|
||||||
cli::cli_alert_info("{.fun build_single_tag}: 1. Cloning package {.pkg {package_name}} with tag {.env {tag}}.")
|
|
||||||
|
|
||||||
# Using system git here as {gert} does not provide this functionality
|
# Using system git here as {gert} does not provide this functionality
|
||||||
system2("git", args = c(
|
system2("git", args = c(
|
||||||
"clone", "-q", sprintf("--branch=%s", tag),
|
"clone", "-q", sprintf("--branch=%s", tag),
|
||||||
sprintf("https://github.com/cran/%s", package_name), local_clone_dir_single
|
sprintf("https://github.com/cran/%s", package_name), local_clone_dir_single
|
||||||
))
|
))
|
||||||
|
|
||||||
cli::cli_alert_info("{.fun build_single_tag}: 2. Building package {.pkg {package_name}} with tag {.env {tag}}.")
|
cli::cli_alert_info("{.fun build_single_tag}: 2. Building package {.pkg {package_name}} with tag {.strong {tag}}.")
|
||||||
|
|
||||||
pkgbuild::build(
|
pkgbuild::build(
|
||||||
path = sprintf("%s", local_clone_dir_single),
|
path = sprintf("%s", local_clone_dir_single),
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ set_codename <- function(codename) {
|
||||||
}
|
}
|
||||||
|
|
||||||
set_bin_path <- function(r_version_minor, build_for_minor, local_build_root, codename) {
|
set_bin_path <- function(r_version_minor, build_for_minor, local_build_root, codename) {
|
||||||
if (is.null(r_version_minor) && !build_for_minor) {
|
if (!build_for_minor) {
|
||||||
path <- sprintf(
|
path <- sprintf(
|
||||||
"%s/__linux__/%s/latest/src/contrib",
|
"%s/__linux__/%s/latest/src/contrib",
|
||||||
local_build_root, codename
|
local_build_root, codename
|
||||||
|
|
|
||||||
72
exec.sh
72
exec.sh
|
|
@ -1,10 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
# bootstrap
|
# bootstrap
|
||||||
# NB: ranger requires CXX14, R 4.0.5 still uses CXX11
|
# NB: ranger requires CXX14, R 4.0.5 still uses CXX11
|
||||||
export R_VERSION=4.0.5
|
export R_VERSION=4.0.5
|
||||||
export R_PROGRESSR_ENABLE=TRUE
|
export R_PROGRESSR_ENABLE=TRUE
|
||||||
/opt/R/$R_VERSION/bin/R
|
/opt/R/$R_VERSION/bin/R
|
||||||
mkdir $HOME/.R && echo -e 'CXX_STD = CXX14\n\nVER=\nCCACHE=ccache\nCC=$(CCACHE) gcc$(VER) -std=gnu99\nCXX=$(CCACHE) g++$(VER)\nC11=$(CCACHE) g++$(VER)\nC14=$(CCACHE) g++$(VER)\nFC=$(CCACHE) gfortran$(VER)\nF77=$(CCACHE) gfortran$(VER)' > $HOME/.R/Makevars
|
mkdir $HOME/.R && echo -e 'CXX_STD = CXX14\n\nVER=\nCCACHE=ccache\nCC=$(CCACHE) gcc$(VER) -std=gnu99\nCXX=$(CCACHE) g++$(VER)\nC11=$(CCACHE) g++$(VER)\nC14=$(CCACHE) g++$(VER)\nFC=$(CCACHE) gfortran$(VER)\nF77=$(CCACHE) gfortran$(VER)\nMAKEFLAGS=-j2' >$HOME/.R/Makevars
|
||||||
mkdir $HOME/.ccache && echo -e 'max_size = 5.0G\nsloppiness = include_file_ctime\nhash_dir=false' > $HOME/.ccache/ccache.conf
|
mkdir $HOME/.ccache && echo -e 'max_size = 5.0G\nsloppiness = include_file_ctime\nhash_dir=false' >$HOME/.ccache/ccache.conf
|
||||||
|
|
||||||
/opt/R/$R_VERSION/bin/R -q -e 'install.packages("pak", repos = sprintf("https://r-lib.github.io/p/pak/stable/%s/%s/%s", .Platform$pkgType, R.Version()$os, R.Version()$arch))'
|
/opt/R/$R_VERSION/bin/R -q -e 'install.packages("pak", repos = sprintf("https://r-lib.github.io/p/pak/stable/%s/%s/%s", .Platform$pkgType, R.Version()$os, R.Version()$arch))'
|
||||||
/opt/R/$R_VERSION/bin/R -q -e 'Sys.setenv(PKG_SYSREQS = TRUE); Sys.setenv(PKG_SYSREQS_VERBOSE = TRUE); pak::pak("devtools")'
|
/opt/R/$R_VERSION/bin/R -q -e 'Sys.setenv(PKG_SYSREQS = TRUE); Sys.setenv(PKG_SYSREQS_VERBOSE = TRUE); pak::pak("devtools")'
|
||||||
|
|
@ -17,11 +19,69 @@ mkdir $HOME/.ccache && echo -e 'max_size = 5.0G\nsloppiness = include_file_ctime
|
||||||
# all tags (sequential)
|
# all tags (sequential)
|
||||||
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); build_binary_package("mlr3filters", install_system_dependencies=FALSE)'
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); build_binary_package("mlr3filters", install_system_dependencies=FALSE)'
|
||||||
# all tags (parallel)
|
# all tags (parallel)
|
||||||
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); future::plan("multicore", workers = 2); build_binary_package("mlr3filters", install_system_dependencies=FALSE);'
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); future::plan("multicore", workers = 2); build_binary_package("mlr3filters", install_system_dependencies=FALSE, build_for_minor=FALSE);'
|
||||||
|
|
||||||
|
### execute
|
||||||
|
|
||||||
|
# mlr3filters ALL
|
||||||
|
ssh -T homelab-de <<'EOF'
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
cd /home/pjs/rBinaries
|
||||||
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); future::plan("multicore", workers = 2); build_binary_package("mlr3filters", install_system_dependencies=FALSE, build_for_minor=FALSE);'
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# mlr3filters SINGLE
|
||||||
# execute
|
export R_VERSION=4.0.5
|
||||||
|
export R_PROGRESSR_ENABLE=TRUE
|
||||||
rsync -a ~/git/homelab/rBinaries homelab-de:/home/pjs/
|
rsync -a ~/git/homelab/rBinaries homelab-de:/home/pjs/
|
||||||
ssh homelab-de "cd /home/pjs/rBinaries; /opt/R/$R_VERSION/bin/R -q -e \"devtools::load_all(); build_binary_package('mlr3filters', tag = '0.8.0')\""
|
ssh -T homelab-de <<'EOF'
|
||||||
|
sudo su
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
cd /home/pjs/rBinaries
|
||||||
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); future::plan("sequential", workers = 2); build_binary_package("mlr3filters", "0.8.0", install_system_dependencies=FALSE, build_for_minor=FALSE);'
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# stringi ALL
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
export R_PROGRESSR_ENABLE=TRUE
|
||||||
|
rsync -a ~/git/homelab/rBinaries homelab-de:/home/pjs/
|
||||||
|
ssh -T homelab-de <<'EOF'
|
||||||
|
sudo su
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
cd /home/pjs/rBinaries
|
||||||
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); future::plan("multicore", workers = 2); build_binary_package("stringi", install_system_dependencies=FALSE, build_for_minor=FALSE);'
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# stringi SINGLE
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
export R_PROGRESSR_ENABLE=TRUE
|
||||||
|
rsync -a ~/git/homelab/rBinaries homelab-de:/home/pjs/
|
||||||
|
ssh -T homelab-de <<'EOF'
|
||||||
|
sudo su
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
cd /home/pjs/rBinaries
|
||||||
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); future::plan("sequential", workers = 2); build_binary_package("stringi", tag = "1.8.4", install_system_dependencies=FALSE, build_for_minor=FALSE);'
|
||||||
|
EOF
|
||||||
|
|
||||||
|
rsync -a ~/git/homelab/rBinaries homelab-de:/home/pjs/
|
||||||
|
ssh -T homelab-de <<'EOF'
|
||||||
|
sudo su
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); query_build_metadata()'
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# build metadata summary
|
||||||
|
rsync -a ~/git/homelab/rBinaries homelab-de:/home/pjs/
|
||||||
|
ssh -T homelab-de <<'EOF'
|
||||||
|
sudo su
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); build_metadata_summary(package = "stringi", platform = "redhat-9")'
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# get metadata summary
|
||||||
|
rsync -a ~/git/homelab/rBinaries homelab-de:/home/pjs/
|
||||||
|
ssh -T homelab-de <<'EOF'
|
||||||
|
sudo su
|
||||||
|
export R_VERSION=4.0.5
|
||||||
|
/opt/R/$R_VERSION/bin/R -q -e 'setwd("/home/pjs/rBinaries"); devtools::load_all(); query_metadata_summary()'
|
||||||
|
EOF
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue