From 18521d9d65bb9adb2201ef3f81702cdab0516062 Mon Sep 17 00:00:00 2001 From: vagudets Date: Tue, 22 Apr 2025 13:57:15 +0200 Subject: [PATCH 1/2] Add CONTRIBUTING.md to .Rbuildignore --- .Rbuildignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.Rbuildignore b/.Rbuildignore index 98316cc..d79d3e8 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -9,11 +9,12 @@ ^inst/doc$ ^\.gitlab-ci\.yml$ ## unit tests should be ignored when building the package for CRAN -#^tests$ +^tests$ ^inst/PlotProfiling\.R$ ^.gitlab$ # Suggested by http://r-pkgs.had.co.nz/package.html ^.*\.Rproj$ # Automatically added by RStudio, ^\.Rproj\.user$ # used for temporary files. ^cran-comments\.md$ # Comments for CRAN submission +^CONTRIBUTING\.md$ #^NEWS\.md$ # A news file written in Markdown -- GitLab From 4d136ddf79ebf9ccd74ea241fdf1a098faa978d0 Mon Sep 17 00:00:00 2001 From: vagudets Date: Wed, 11 Jun 2025 10:49:21 +0200 Subject: [PATCH 2/2] Add 'amd' and 'mn5' as options for ByChunks_autosubmit.R --- R/ByChunks_autosubmit.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/ByChunks_autosubmit.R b/R/ByChunks_autosubmit.R index bf63878..dc0e2e9 100644 --- a/R/ByChunks_autosubmit.R +++ b/R/ByChunks_autosubmit.R @@ -236,10 +236,10 @@ ByChunks_autosubmit <- function(step_fun, cube_headers, ..., chunks = 'auto', cluster <- default_cluster ### queue_host - support_hpcs <- c('local', 'nord3', 'nord4') # names in platforms.yml + support_hpcs <- c('local', 'nord3', 'nord4', 'mn5', 'amd') # names in platforms.yml if (is.null(cluster$queue_host) || !cluster$queue_host %in% support_hpcs) { stop("Cluster component 'queue_host' must be one of the following: ", - paste(support_hpcs, collapse = ','), '.') + paste(support_hpcs, collapse = ', '), '.') } ### data_dir -- GitLab