67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"builders": [
|
|
{
|
|
"name": "chocolate",
|
|
"type": "file",
|
|
"content": "chocolate",
|
|
"target": "chocolate.txt"
|
|
},
|
|
{
|
|
"name": "vanilla",
|
|
"type": "file",
|
|
"content": "vanilla",
|
|
"target": "vanilla.txt"
|
|
},
|
|
{
|
|
"name": "cherry",
|
|
"type": "file",
|
|
"content": "cherry",
|
|
"target": "cherry.txt"
|
|
}
|
|
],
|
|
"post-processors": [
|
|
[
|
|
{
|
|
"name": "apple",
|
|
"type": "shell-local",
|
|
"inline": [ "echo apple > apple.txt" ]
|
|
},
|
|
{
|
|
"name": "peach",
|
|
"type": "shell-local",
|
|
"inline": [ "echo peach > peach.txt" ]
|
|
}
|
|
],
|
|
[
|
|
{
|
|
"name": "pear",
|
|
"type": "shell-local",
|
|
"inline": [ "echo pear > pear.txt" ]
|
|
},
|
|
{
|
|
"name": "banana",
|
|
"type": "shell-local",
|
|
"inline": [ "echo pear > banana.txt" ]
|
|
}
|
|
],
|
|
[
|
|
{
|
|
"only": [
|
|
"vanilla"
|
|
],
|
|
"name": "tomato",
|
|
"type": "shell-local",
|
|
"inline": [ "echo tomato > tomato.txt" ]
|
|
}
|
|
],
|
|
[
|
|
{
|
|
"only": [
|
|
"chocolate"
|
|
],
|
|
"type": "shell-local",
|
|
"inline": [ "echo unnamed > unnamed.txt" ]
|
|
}
|
|
]
|
|
]
|
|
} |