Updated Assignments overview (markdown)

master
Martin Polanka 9 years ago
parent 2227401ce7
commit 0cb31b6b05

@ -67,25 +67,33 @@ tasks:
- task-id: "fetch_input" - task-id: "fetch_input"
priority: 2 priority: 2
fatal-failure: true fatal-failure: true
source: "94549d889ae96210ff2a73bd0a5bbe3185f05ff6" cmd:
destination: "01.in" bin: "fetch"
cmd: "fetch" args:
- "94549d889ae96210ff2a73bd0a5bbe3185f05ff6"
- "01.in"
log: "fetch.log" # voluntary option, can be omitted 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: # can be omitted if there is no dependencies dependencies: # can be omitted if there is no dependencies
- compile_test01 - compile_test01
source: "recodex.cpp" cmd:
destination: "/codex/boxes/tmp/recodex.cpp" bin: "mv"
cmd: "mv" args:
- "recodex.cpp"
- "/codex/boxes/tmp/recodex.cpp"
log: "move.log" # voluntary option, can be omitted 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:
bin: "recodex"
args:
- "-v"
- "-f 01.in"
stdin: "01.in" # can be omitted if there is no binding to stdin stdin: "01.in" # can be omitted if there is no binding to stdin
stdout: "01.out" # can be omitted if there is no binding to stdout stdout: "01.out" # can be omitted if there is no binding to stdout
stderr: "01.err" # can be omitted if there is no binding to stderr stderr: "01.err" # can be omitted if there is no binding to stderr

Loading…
Cancel
Save