build-cran-binaries/local/last-processed-by-platform.R
2024-11-25 10:04:23 +01:00

10 lines
298 B
R

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