build-cran-binaries/.crow
Repository files (latest commit first)
Filename Latest commit message Latest commit date
pat-s 4242e63f30
All checks were successful
ci/crow/cron/process-updates-alpine-323-arm64 Pipeline was successful
ci/crow/cron/process-updates-redhat-9-arm64 Pipeline was successful
ci/crow/cron/process-updates-ubuntu-2204-amd64 Pipeline was successful
ci/crow/cron/process-updates-ubuntu-2204-arm64 Pipeline was successful
ci/crow/cron/process-updates-ubuntu-2404-amd64 Pipeline was successful
ci/crow/cron/process-updates-ubuntu-2404-arm64 Pipeline was successful
ci/crow/cron/process-updates-redhat-10-amd64 Pipeline was successful
ci/crow/cron/process-updates-redhat-10-arm64 Pipeline was successful
ci/crow/cron/process-updates-alpine-322-amd64 Pipeline was successful
ci/crow/cron/process-updates-alpine-322-arm64 Pipeline was successful
ci/crow/cron/weekly-audit-missing-alpine-322-amd64 Pipeline was successful
ci/crow/cron/weekly-audit-missing-alpine-322-arm64 Pipeline was successful
ci/crow/cron/process-updates-redhat-9-amd64 Pipeline was successful
ci/crow/cron/process-updates-alpine-323-amd64 Pipeline was successful
ci/crow/cron/process-updates-redhat-8-arm64 Pipeline was successful
ci/crow/cron/process-updates-redhat-8-amd64 Pipeline was successful
refactor(ci): simplify process-updates cache cleanup (#76)
## Summary

The `rm -rf /mnt/cache/...` block in 14 `process-updates-*` files had two real issues:

1. `/mnt/cache/pkgcache/R/pkgcache` listed twice — harmless duplicate.
2. `/mnt/cache/R-pkgs/00LOCK-pak/mnt/cache/R-pkgs/00LOCK-RPostgres` — missing a space between two paths, so `rm` walks a nested nonsense path that never exists. The `00LOCK-RPostgres` lock cleanup never actually ran.

Collapses to the same shape `weekly-rebuild-missing-*` already uses:

```
rm -rf /mnt/cache/R-pkgs/00LOCK-* /mnt/cache/R-pkgs/{bincraft,pkgcache} /mnt/cache/pkgcache/R/pkgcache
```

`00LOCK-*` covers every stale lock (pak, bincraft, RPostgres, r-pkg-binaries, …) without enumerating them, so adding a new locked package later doesn't need another YAML touch.

14 files, 1 line changed each.

Reviewed-on: #76
2026-06-12 13:41:53 +00:00
..
archive-missed-packages.yaml feat(ci): archive missed packages for redhat-10 and alpine323 (#75) 2026-06-08 08:30:38 +00:00
build-all-versions-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
build-all-versions-arm64.yaml refactor: single source of truth for excluded packages (#79) 2026-06-08 08:30:19 +00:00
build-all-versions-install-deps-amd64.yaml refactor: single source of truth for excluded packages (#79) 2026-06-08 08:30:19 +00:00
build-all-versions-install-deps-arm64.yaml refactor: single source of truth for excluded packages (#79) 2026-06-08 08:30:19 +00:00
build-r-minor-sensitive-packages.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
process-updates-alpine-322-amd64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-alpine-322-arm64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-alpine-323-amd64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-alpine-323-arm64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-redhat-8-amd64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-redhat-8-arm64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-redhat-9-amd64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-redhat-9-arm64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-redhat-10-amd64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-redhat-10-arm64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-ubuntu-2204-amd64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-ubuntu-2204-arm64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-ubuntu-2404-amd64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
process-updates-ubuntu-2404-arm64.yaml refactor(ci): simplify process-updates cache cleanup (#76) 2026-06-12 13:41:53 +00:00
weekly-audit-missing-alpine-321-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-alpine-321-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-alpine-322-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-alpine-322-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-alpine-323-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-alpine-323-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-redhat-8-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-redhat-8-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-redhat-9-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-redhat-9-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-redhat-10-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-redhat-10-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-ubuntu-2204-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-ubuntu-2204-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-ubuntu-2404-amd64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-audit-missing-ubuntu-2404-arm64.yaml refactor: R_VERSION syntax 2026-05-27 22:36:09 +02:00
weekly-rebuild-missing-alpine-322-amd64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-alpine-322-arm64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-alpine-323-amd64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-alpine-323-arm64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-redhat-8-amd64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-redhat-8-arm64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-redhat-9-amd64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-redhat-9-arm64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-redhat-10-amd64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-redhat-10-arm64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-ubuntu-2204-amd64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-ubuntu-2204-arm64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-ubuntu-2404-amd64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00
weekly-rebuild-missing-ubuntu-2404-arm64.yaml chore: bump to bincraft 4.1.1 2026-05-31 09:30:02 +02:00