Updated Assignments overview (markdown)

master
Martin Polanka 9 years ago
parent 38be867cba
commit 253dddbc6a

@ -70,36 +70,37 @@ tasks:
source: "94549d889ae96210ff2a73bd0a5bbe3185f05ff6" source: "94549d889ae96210ff2a73bd0a5bbe3185f05ff6"
destination: "recodex.cpp" destination: "recodex.cpp"
cmd: "fetch" cmd: "fetch"
log: "fetch.log" log: "fetch.log" # voluntary option, can be omitted
- task-id: "fetch_input" - task-id: "fetch_input"
priority: 2 priority: 2
fatal-failure: true fatal-failure: true
source: "94549d889ae96210ff2a73bd0a5bbe3185f05ff6" source: "94549d889ae96210ff2a73bd0a5bbe3185f05ff6"
destination: "01.in" destination: "01.in"
cmd: "fetch" cmd: "fetch"
log: "fetch.log" log: "fetch.log" # voluntary option, can be omitted
- task-id: "move_test01" - task-id: "move_test01"
priority: 3 priority: 3
fatal-failure: true fatal-failure: true
dependencies: dependencies: # can be omitted if there is no dependencies
- compile_test01 - compile_test01
source: "recodex.cpp" source: "recodex.cpp"
destination: "/codex/boxes/tmp/recodex.cpp" destination: "/codex/boxes/tmp/recodex.cpp"
cmd: "mv" cmd: "mv"
log: "move.log" log: "move.log" # voluntary option, can be omitted
- task-id: "eval_test01" - task-id: "eval_test01"
priority: 4 priority: 4
fatal-failure: false fatal-failure: false
dependencies: dependencies:
- move_test01 - move_test01
cmd: "recodex -v -f 01.in" cmd: "recodex -v -f 01.in"
stdin: "01.in" stdin: "01.in" # can be omitted if there is no binding to stdin
stdout: "01.out" stdout: "01.out" # can be omitted if there is no binding to stdout
stderr: "01.err" stderr: "01.err" # can be omitted if there is no binding to stderr
log: "eval.log" log: "eval.log" # voluntary option, can be omitted
sandbox: # if defined task is external and will be run in sandbox sandbox: # if defined task is external and will be run in sandbox
name: "isolate" name: "isolate" # mandatory information
limits: limits: # if not defined, then worker default configuration of limits is loaded
# anything of the specified limits can be omitted and will be loaded from worker defaults
- hw-group-id: group1 # determines specific limits for specific machines - hw-group-id: group1 # determines specific limits for specific machines
time: 5 # seconds time: 5 # seconds
wall-time: 6 # seconds wall-time: 6 # seconds
@ -108,7 +109,7 @@ tasks:
memory: 50000 # in KB memory: 50000 # in KB
parallel: false # time and memory limits are merged from all potential processes/threads parallel: false # time and memory limits are merged from all potential processes/threads
disk-usage: 5 # MB disk-usage: 5 # MB
directory-bindings: directory-bindings: # describes which folders will be visible inside sandbox
- "/tmp/prepared": "/box" - "/tmp/prepared": "/box"
- "/tmp/skeleton": "/" - "/tmp/skeleton": "/"
environ-variable: environ-variable:
@ -121,7 +122,7 @@ tasks:
memory: 60000 # in KB memory: 60000 # in KB
parallel: false # time and memory limits are merged from all potential processes/threads parallel: false # time and memory limits are merged from all potential processes/threads
disk-usage: 50 # MB disk-usage: 50 # MB
directory-bindings: directory-bindings: # describes which folders will be visible inside sandbox
- "/tmp/prepared_home": "/home/" - "/tmp/prepared_home": "/home/"
... ...
``` ```

Loading…
Cancel
Save