diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 23:45:31 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 23:45:31 +0200 |
| commit | 8850e41b3c51a5d90ca6c1667d6c1b1cebae6ad0 (patch) | |
| tree | 0d92519c3980f83fcb29bffaae674722e9338041 /app/relay/modules/test.js | |
| parent | 927d75b8d4579f86adb0c3d8f3eb8847924b0c09 (diff) | |
"after" tasks working
Diffstat (limited to 'app/relay/modules/test.js')
| -rw-r--r-- | app/relay/modules/test.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/relay/modules/test.js b/app/relay/modules/test.js index 8876f7c..259e817 100644 --- a/app/relay/modules/test.js +++ b/app/relay/modules/test.js @@ -33,10 +33,22 @@ const live = { return null } } +const wait = { + type: 'perl', + script: 'test.pl', + params: '--wait', + after: 'buzz', +} +const buzz = { + type: 'perl', + script: 'test.pl', + params: '--buzz', +} export default { name, cwd, activities: { cpu, gpu, live, + wait, buzz, } } |
