-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
133 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"description": "minimal carping test pipeline - works, but I/O port names are poorly named. See log for warning", | ||
"nodes":[ | ||
{ "id": "n1", | ||
"type": "EXEC", | ||
"cmd": "echo stuff", | ||
"use_STDIN": 0, | ||
"use_STDOUT": 1 | ||
}, | ||
{ "id": "n2", | ||
"type": "EXEC", | ||
"cmd": ["cat"], | ||
"use_STDIN": 1, | ||
"use_STDOUT": 1 | ||
}, | ||
{ "id": "m", | ||
"type": "EXEC", | ||
"cmd": ["echo", "stuff"], | ||
"use_STDIN": false, | ||
"use_STDOUT": true | ||
}, | ||
{ "id": "d", | ||
"type": "EXEC", | ||
"cmd": "diff __IN1__ __IN2__", | ||
"use_STDIN": 0, | ||
"use_STDOUT": 0 | ||
} | ||
], | ||
"edges":[ | ||
{ "from": "n1", | ||
"to": "n2" | ||
}, | ||
{ "from": "n2", | ||
"to": "d:__IN1__" | ||
}, | ||
{ "from": "m", | ||
"to": "d:__IN2__" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"description": "minimal failing test pipeline. Port name in edge does not match one in node definition. Also carps about poorly named __IN1__ and __INN2__ ports", | ||
"nodes":[ | ||
{ "id": "n1", | ||
"type": "EXEC", | ||
"cmd": "echo stuff", | ||
"use_STDIN": 0, | ||
"use_STDOUT": 1 | ||
}, | ||
{ "id": "n2", | ||
"type": "EXEC", | ||
"cmd": ["cat"], | ||
"use_STDIN": 1, | ||
"use_STDOUT": 1 | ||
}, | ||
{ "id": "m", | ||
"type": "EXEC", | ||
"cmd": ["echo", "stuff"], | ||
"use_STDIN": false, | ||
"use_STDOUT": true | ||
}, | ||
{ "id": "d", | ||
"type": "EXEC", | ||
"cmd": "diff __IN1__ __IN2__", | ||
"use_STDIN": 0, | ||
"use_STDOUT": 0 | ||
} | ||
], | ||
"edges":[ | ||
{ "from": "n1", | ||
"to": "n2" | ||
}, | ||
{ "from": "n2", | ||
"to": "d:__IN1__" | ||
}, | ||
{ "from": "m", | ||
"to": "d:__INN2__" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"description": "minimal failing test pipeline. Port names in edges match the node definitions, but are of the wrong type", | ||
"nodes":[ | ||
{ "id": "n1", | ||
"type": "EXEC", | ||
"cmd": "echo stuff", | ||
"use_STDIN": 0, | ||
"use_STDOUT": 1 | ||
}, | ||
{ "id": "n2", | ||
"type": "EXEC", | ||
"cmd": ["cat"], | ||
"use_STDIN": 1, | ||
"use_STDOUT": 1 | ||
}, | ||
{ "id": "m", | ||
"type": "EXEC", | ||
"cmd": ["echo", "stuff"], | ||
"use_STDIN": false, | ||
"use_STDOUT": true | ||
}, | ||
{ "id": "d", | ||
"type": "EXEC", | ||
"cmd": "diff __IN_1__ __OUT_2__", | ||
"use_STDIN": 0, | ||
"use_STDOUT": 0 | ||
} | ||
], | ||
"edges":[ | ||
{ "from": "n1", | ||
"to": "n2" | ||
}, | ||
{ "from": "n2", | ||
"to": "d:__IN_1__" | ||
}, | ||
{ "from": "m", | ||
"to": "d:__OUT_2__" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters