From 07b3a9e18f499b4d1dd432f6fc51ca32565dc498 Mon Sep 17 00:00:00 2001 From: Christos Kotsalos Date: Tue, 18 Nov 2025 08:25:43 +0100 Subject: [PATCH 1/6] testing bencher --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fa4ed014a..00a9040ba 100644 --- a/README.md +++ b/README.md @@ -59,3 +59,5 @@ reframe \ -l \ --skip-prgenv-check --skip-system-check ``` + +testing From 34f68d813b1f91279e29e36949acb75fce854b9b Mon Sep 17 00:00:00 2001 From: Jg_Piccinali <> Date: Tue, 18 Nov 2025 09:35:18 +0100 Subject: [PATCH 2/6] Fix --- ci/alps_uenv.yml | 2 +- ci/scripts/alps.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/alps_uenv.yml b/ci/alps_uenv.yml index fd27a3a3b..4b0d1708f 100644 --- a/ci/alps_uenv.yml +++ b/ci/alps_uenv.yml @@ -69,7 +69,7 @@ reframe: - git remote -v - hostname script: - - rfm_path=$(./ci/scripts/alps.sh install_reframe) + - rfm_path=$(./ci/scripts/alps.sh install_reframe|grep HERE |awk '{print $1}') - export PATH=$rfm_path:$PATH - reframe -V # If in a PR, run only the tests modified in the PR, else: in CRONJOB diff --git a/ci/scripts/alps.sh b/ci/scripts/alps.sh index a0f692fc7..968f7ccbc 100755 --- a/ci/scripts/alps.sh +++ b/ci/scripts/alps.sh @@ -289,7 +289,7 @@ install_reframe() { # git clone --depth 1 https://github.com/reframe-hpc/reframe.git pip install -r ./config/utilities/requirements.txt # return the PATH to the calling function: - echo "$PWD/rfm_venv/bin" + echo "$PWD/rfm_venv/bin # HERE" } # }}} # {{{ install_reframe_tests (alps branch) From 24850954fa793b1fc4b0392143e092a517448a8e Mon Sep 17 00:00:00 2001 From: Jg_Piccinali <> Date: Tue, 18 Nov 2025 10:12:10 +0100 Subject: [PATCH 3/6] Fix json_file_path --- checks/system/systems_data/beverin_data.json | 51 ++++++++++++++++++++ checks/system/systems_data/daint_data.json | 7 --- 2 files changed, 51 insertions(+), 7 deletions(-) create mode 100644 checks/system/systems_data/beverin_data.json diff --git a/checks/system/systems_data/beverin_data.json b/checks/system/systems_data/beverin_data.json new file mode 100644 index 000000000..feafa7639 --- /dev/null +++ b/checks/system/systems_data/beverin_data.json @@ -0,0 +1,51 @@ +{ + "filesystems": [ + { + "mount_point": "capstor/scratch/cscs", + "fstype": "lustre" + }, + { + "mount_point": "capstor/store/cscs", + "fstype": "lustre" + }, + { + "mount_point": "iopsstor/scratch/cscs", + "fstype": "lustre" + }, + { + "mount_point": "iopsstor/store/cscs", + "fstype": "lustre" + }, + { + "mount_point": "/users", + "fstype": "nfs" + } + ], + "pkgs": [ + "netcat", + "gcc12-fortran", + "htop", + "lsof", + "libtool", + "ltrace", + "ansible", + "bubblewrap", + "nnn", + "wget", + "pycxi-utils", + "datacenter-gpu-manager", + "gcc12-c++", + "lua-lmod", + "gcc12" + ], + "cscs_extra_vars": [ + { + "env_var": "STORE", + "env_value": "/capstor/store/cscs/cscs" + }, + { + "env_var": "SCRATCH", + "env_value": "/capstor/scratch/cscs/" + } + ] +} diff --git a/checks/system/systems_data/daint_data.json b/checks/system/systems_data/daint_data.json index 252c21545..ba46ec8d0 100644 --- a/checks/system/systems_data/daint_data.json +++ b/checks/system/systems_data/daint_data.json @@ -8,10 +8,6 @@ "mount_point": "capstor/store/cscs", "fstype": "lustre" }, - { - "mount_point": "/users.OLD", - "fstype": "lustre" - }, { "mount_point": "iopsstor/scratch/cscs", "fstype": "lustre" @@ -23,9 +19,6 @@ { "mount_point": "/users", "fstype": "nfs" - }, - { - "mount_point": "/capstor/scratch/cscs" } ], "pkgs": [ From 4d8dae702cb8ca66ae60293f5eabc47fbcdb6ec2 Mon Sep 17 00:00:00 2001 From: Christos Kotsalos Date: Tue, 18 Nov 2025 14:37:58 +0100 Subject: [PATCH 4/6] Increase SLURM_TIMELIMIT for BENCHER_API_TOKEN --- ci/alps_uenv.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/alps_uenv.yml b/ci/alps_uenv.yml index 4b0d1708f..3be7e73a6 100644 --- a/ci/alps_uenv.yml +++ b/ci/alps_uenv.yml @@ -55,7 +55,7 @@ reframe: SLURM_TIMELIMIT: '02:00:00' - if: '$BENCHER_API_TOKEN' variables: - SLURM_TIMELIMIT: '00:20:00' + SLURM_TIMELIMIT: '01:00:00' before_script: - echo "FIRECREST_SYSTEM=$FIRECREST_SYSTEM / F7T_URL=$F7T_URL / CLUSTER_NAME=$CLUSTER_NAME" - uname -a From dd9a9531abf7f1b94188f9a8c217eb2d375cdb96 Mon Sep 17 00:00:00 2001 From: Jean-guillaume Piccinali Date: Wed, 19 Nov 2025 07:50:11 +0100 Subject: [PATCH 5/6] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 00a9040ba..fa4ed014a 100644 --- a/README.md +++ b/README.md @@ -59,5 +59,3 @@ reframe \ -l \ --skip-prgenv-check --skip-system-check ``` - -testing From da3653cff22faaf6ba61abcbbc616d799acbf819 Mon Sep 17 00:00:00 2001 From: Jean-guillaume Piccinali Date: Wed, 19 Nov 2025 08:08:25 +0100 Subject: [PATCH 6/6] Update checks/system/systems_data/beverin_data.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- checks/system/systems_data/beverin_data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks/system/systems_data/beverin_data.json b/checks/system/systems_data/beverin_data.json index feafa7639..1edc493f6 100644 --- a/checks/system/systems_data/beverin_data.json +++ b/checks/system/systems_data/beverin_data.json @@ -45,7 +45,7 @@ }, { "env_var": "SCRATCH", - "env_value": "/capstor/scratch/cscs/" + "env_value": "/capstor/scratch/cscs" } ] }