feat: add script to infer which pkgs were built last
This commit is contained in:
parent
0cda5405ac
commit
93f872a8eb
1 changed files with 177 additions and 168 deletions
16
local/last-processed-by-platform.R
Normal file
16
local/last-processed-by-platform.R
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
devtools::load_all()
|
||||
library(dplyr)
|
||||
|
||||
### Show last processed package by each platform/arch
|
||||
query_metadata_table() |>
|
||||
group_by(platform, arch) |>
|
||||
arrange(desc(timestamp)) |>
|
||||
select(name, timestamp) |>
|
||||
filter(row_number()==1)
|
||||
|
||||
|
||||
### Query index of package in the CRAN DB (which is sorted alphabetically)
|
||||
pkgs <- tools::CRAN_package_db()$Package
|
||||
pkgs <- setdiff(pkgs, c("biplotbootGUI", "Rsymphony", "PortfolioAnalytics", "ROI.plugin.symphony", "adea", "RInno", "skedastic", "RPushbullet", "SimNPH", "SimDesign","simCAT", "SIAmodules", "shinytest2", "shinyIRT", "ShinyItemAnalysis", "shiny.benchmark", "scDIFtest", "RSP", "ROracle", "ROI.plugin.qpoases", "ROI.plugin.cplex", "RmecabKo", "rmarchingcubes", "RcppMeCab", "Rcplex", "ravetools", "Rbeast", "Rblpapi", "RcppEnsmallen", "qtkit", "priorCON", "prior3D", "PerFit", "outlierensembles", "nomnoml", "mxfda", "MultBiplotR", "mstDIF", "mdsr", "makepipe", "lordif", "KSgeneral", "kequate", "jstager", "jrt", "irtreliability", "irtQ", "irtpwr", "irtawsi", "GRShiny", "gpuR", "googletraffic", "giacR", "gamstransfer", "flps", "flow", "filters", "faoutlier", "equateIRT", "EnrichIntersect", "EFA.dimensions", "DFIT", "D3mirt", "ctgdist", "CoTiMA", "ConvertPar", "clrng", "bscui", "BifactorIndicesCalculator", "autoFC", "airt"))
|
||||
which(pkgs == "urca")
|
||||
pkgs[19121:19122]
|
||||
Loading…
Reference in a new issue