aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/jsonnet/wordcount_golden.json
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-05-09 14:28:07 +0000
committerGravatar Klaus Aehlig <aehlig@google.com>2016-05-09 14:41:46 +0000
commitde424b6c1d0fcfd5b8cb58d495ce98cf73be58dd (patch)
tree7b8fcff3b169c5813f45214dae211afbcca1f410 /examples/jsonnet/wordcount_golden.json
parentfab3925f76832b64113624bc2ea1c6861fca768d (diff)
Remove rust, jsonnet, scala and closure from the Bazel repository
Diffstat (limited to 'examples/jsonnet/wordcount_golden.json')
-rw-r--r--examples/jsonnet/wordcount_golden.json53
1 files changed, 0 insertions, 53 deletions
diff --git a/examples/jsonnet/wordcount_golden.json b/examples/jsonnet/wordcount_golden.json
deleted file mode 100644
index 25d99cf3ab..0000000000
--- a/examples/jsonnet/wordcount_golden.json
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- "wordcount": {
- "jobs": {
- "count": {
- "command": "uniq -c /tmp/sorted_tokens > /tmp/counts",
- "deps": [
- ":sort"
- ],
- "inputs": [
- "/tmp/sorted_tokens"
- ],
- "outputs": [
- "/tmp/counts"
- ],
- "type": "sh",
- "vars": { }
- },
- "sort": {
- "command": "sort /tmp/tokens > /tmp/sorted_tokens",
- "deps": [
- ":tokenize"
- ],
- "inputs": [
- "/tmp/tokens"
- ],
- "outputs": [
- "/tmp/sorted_tokens"
- ],
- "type": "sh",
- "vars": { }
- },
- "tokenize": {
- "command": "tr ' ' '\n' < /tmp/passage_test > /tmp/tokens",
- "deps": [ ],
- "inputs": [
- "/tmp/passage_test"
- ],
- "outputs": [
- "/tmp/tokens"
- ],
- "type": "sh",
- "vars": { }
- }
- },
- "retries": 12,
- "schedule": {
- "repeat_frequency": 1,
- "repeat_type": "week",
- "start_date": "2015-11-15",
- "start_time": "17:30"
- }
- }
-}