build-cran-binaries/local/last-processed-by-platform.R
2024-11-15 00:18:18 +01:00

9 lines
235 B
R

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)