Skip to content

Commit

Permalink
githubrunner: increase default mem
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamilcuk committed Jul 30, 2024
1 parent 59c14aa commit 5e493c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nomad_tools/entry_githubrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
}
resources {
{% if arg.cpu -%} cpu = {{ arg.cpu }} {%- endif %}
{% if arg.mem -%} memory = {{ arg.mem }} {%- endif %}
memory = {{ arg.mem | default(opts.mem | default (1000)) }}
{% if arg.maxmem -%} memory_max = {{ arg.maxmem }} {%- endif %}
}
{{ opts.task }}
Expand Down

0 comments on commit 5e493c3

Please sign in to comment.