Updated Assignments overview (markdown)

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

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

Loading…
Cancel
Save