21 lines
411 B
JSON
21 lines
411 B
JSON
|
|
[
|
||
|
|
{
|
||
|
|
"name": "run a failing job",
|
||
|
|
"function": "RunCommand",
|
||
|
|
"params": [
|
||
|
|
"./scripts/failue.sh"
|
||
|
|
],
|
||
|
|
"retryCount": 2,
|
||
|
|
"shouldAbort": true
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "run a successful job",
|
||
|
|
"function": "RunCommand",
|
||
|
|
"params": [
|
||
|
|
"./scripts/success.sh"
|
||
|
|
],
|
||
|
|
"retryCount": 0,
|
||
|
|
"shouldAbort": true
|
||
|
|
}
|
||
|
|
]
|