summaryrefslogtreecommitdiff
path: root/app/relay/modules/test.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-07 23:45:31 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-07 23:45:31 +0200
commit8850e41b3c51a5d90ca6c1667d6c1b1cebae6ad0 (patch)
tree0d92519c3980f83fcb29bffaae674722e9338041 /app/relay/modules/test.js
parent927d75b8d4579f86adb0c3d8f3eb8847924b0c09 (diff)
"after" tasks working
Diffstat (limited to 'app/relay/modules/test.js')
-rw-r--r--app/relay/modules/test.js12
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,
}
}