25 lines
513 B
JSON
25 lines
513 B
JSON
{
|
|
"builders": [
|
|
{
|
|
"name": "chocolate",
|
|
"type": "null",
|
|
"communicator": "none"
|
|
}
|
|
],
|
|
"provisioners": [
|
|
{
|
|
"type": "shell-local",
|
|
"inline": [
|
|
"echo hi > provisioner.{{ build `ID`}}.txt"
|
|
]
|
|
}
|
|
],
|
|
"post-processors": [
|
|
{
|
|
"type": "shell-local",
|
|
"inline": [
|
|
"echo hi > post-processor.{{ build `ID`}}.txt"
|
|
]
|
|
}
|
|
]
|
|
} |