aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/jsonnet/intersection_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/intersection_golden.json
parentfab3925f76832b64113624bc2ea1c6861fca768d (diff)
Remove rust, jsonnet, scala and closure from the Bazel repository
Diffstat (limited to 'examples/jsonnet/intersection_golden.json')
-rw-r--r--examples/jsonnet/intersection_golden.json48
1 files changed, 0 insertions, 48 deletions
diff --git a/examples/jsonnet/intersection_golden.json b/examples/jsonnet/intersection_golden.json
deleted file mode 100644
index 6e8fa63864..0000000000
--- a/examples/jsonnet/intersection_golden.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "intersection": {
- "jobs": {
- "intersect": {
- "command": "comm -12 /tmp/list1_sorted /tmp/list2_sorted > /tmp/intersection",
- "deps": [
- ":sort_file1",
- ":sort_file2"
- ],
- "inputs": [
- "/tmp/list1_sorted",
- "/tmp/list2_sorted"
- ],
- "outputs": [
- "/tmp/intersection"
- ],
- "type": "sh",
- "vars": { }
- },
- "sort_file1": {
- "command": "sort /tmp/list1 > /tmp/list1_sorted",
- "deps": [ ],
- "inputs": [
- "/tmp/list1"
- ],
- "outputs": [
- "/tmp/list1_sorted"
- ],
- "type": "sh",
- "vars": { }
- },
- "sort_file2": {
- "command": "sort /tmp/list2 > /tmp/list2_sorted",
- "deps": [ ],
- "inputs": [
- "/tmp/list2"
- ],
- "outputs": [
- "/tmp/list2_sorted"
- ],
- "type": "sh",
- "vars": { }
- }
- },
- "retries": 5,
- "schedule": { }
- }
-}