build-cran-binaries/local/last-processed-by-platform.R

10 lines
296 B
R

### Scope: Show last processed pkgs and timestamp by platform/OS
library(dplyr)
library(bincraft)
### 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)