Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix bot config: add required job_result_unknown_fmt + use 16 cores for jobs #268

Merged
merged 2 commits into from
Jun 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bot/bot-eessi-aws-citc.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ local_tmp = /tmp/$USER/EESSI
# NOTE 2 '--get-user-env' may be needed on systems where the job's environment needs
# to be initialised as if it is for a login shell.
# note: hardcoded 24h time limit until https://github.com/EESSI/eessi-bot-software-layer/issues/146 is fixed
slurm_params = --hold --time=24:0:0
# note: 16 cores which corresponds to *.4xlarge node types, see also arch_target_map
slurm_params = --hold --time=24:0:0 --nodes=1 --ntasks-per-node=16

# full path to the job submission command
submit_command = /usr/bin/sbatch
Expand Down Expand Up @@ -230,3 +231,4 @@ multiple_tarballs = Found {num_tarballs} tarballs in job dir - only 1 matching `
job_result_comment_fmt = <details><summary>{summary} _(click triangle for detailed information)_</summary>Details:{details}<br/>Artefacts:{artefacts}</details>
job_result_details_item_fmt = <br/>&nbsp;&nbsp;&nbsp;&nbsp;{item}
job_result_artefacts_item_fmt = <li><code>{item}</code></li>
job_result_unknown_fmt = <details><summary>:shrug: UNKNOWN _(click triangle for detailed information)_<summary/><ul><li>Job results file `{filename}` does not exist in job directory or reading it failed.</li><li>No artefacts were found/reported.</li></ul></details>