Nomad changes
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s

This commit is contained in:
Henrik Jess Nielsen
2026-06-01 23:40:55 +02:00
parent 72b1a0a6ed
commit b4c07d3693
5723 changed files with 1130655 additions and 0 deletions

20
.task/languages/r.yml Normal file
View File

@@ -0,0 +1,20 @@
version: "3"
internal: true
tasks:
update:
desc: "Update R dependencies within major versions (devtools::update_packages(check.built = TRUE))"
silent: false
cmds:
- cmd: |
cd packages/r && Rscript -e "devtools::update_packages(check.built = TRUE)"
ignore_error: false
upgrade:
desc: "Upgrade R dependencies to latest including breaking changes (update.packages())"
silent: false
cmds:
- cmd: |
command -v Rscript >/dev/null 2>&1 || { echo "R not found, skipping R upgrade"; exit 0; }
cd packages/r && Rscript -e 'options(repos = c(CRAN = "https://cloud.r-project.org")); update.packages(ask = FALSE)'
ignore_error: false