From f8b0143ba10fbd85de74422e35186530ed56dae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Wed, 3 Jun 2026 14:58:19 +0200 Subject: [PATCH 1/2] log ulimits -a output --- bot/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot/build.sh b/bot/build.sh index 7c637aea..b3301ad9 100755 --- a/bot/build.sh +++ b/bot/build.sh @@ -193,8 +193,9 @@ else fi echo "bot/build.sh: EESSI_ACCELERATOR_TARGET_OVERRIDE='${EESSI_ACCELERATOR_TARGET_OVERRIDE}'" -# Log the full lscpu and os-release info: +# Log the full lscpu, ulimits, and os-release info: lscpu > _bot_job${SLURM_JOB_ID}.lscpu +ulimits -a > _bot_job${SLURM_JOB_ID}.ulimits cat /etc/os-release > _bot_job${SLURM_JOB_ID}.os # Also: fetch CPU flags into an array, so that we can implement a hard check against a reference From dc90fe191b04003c2709e2773a726ea3fe7f5a5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Wed, 3 Jun 2026 14:58:59 +0200 Subject: [PATCH 2/2] ulimits -> ulimit --- bot/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/build.sh b/bot/build.sh index b3301ad9..66da8451 100755 --- a/bot/build.sh +++ b/bot/build.sh @@ -195,7 +195,7 @@ echo "bot/build.sh: EESSI_ACCELERATOR_TARGET_OVERRIDE='${EESSI_ACCELERATOR_TARGE # Log the full lscpu, ulimits, and os-release info: lscpu > _bot_job${SLURM_JOB_ID}.lscpu -ulimits -a > _bot_job${SLURM_JOB_ID}.ulimits +ulimit -a > _bot_job${SLURM_JOB_ID}.ulimits cat /etc/os-release > _bot_job${SLURM_JOB_ID}.os # Also: fetch CPU flags into an array, so that we can implement a hard check against a reference