A simple Coveyor CI driver that runs commands agains a codebase.
{
"name": "ubuntu-pipeline-6",
"resource": "pipeline",
"spec": {
"image": "jimjuniorb/hello-node:1.2.3",
"steps": [
{
"name": "print-working-directory",
"command": "pwd"
},
{
"name": "list-files",
"command": "ls -l"
},
{
"name": "show-os-info",
"command": "cat /etc/os-release"
}
]
}
}