This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
drone-runner-podman/engine/compiler/testdata/serial.json
2019-10-24 19:25:18 -07:00

81 lines
1.5 KiB
JSON

{
"platform": {},
"steps": [
{
"id": "random",
"environment": {},
"image": "drone/git:latest",
"labels": {},
"name": "clone",
"run_policy": "always",
"volumes": [
{
"name": "_workspace",
"path": "/drone/src"
}
],
"working_dir": "/drone/src"
},
{
"id": "random",
"args": [
"echo \"$DRONE_SCRIPT\" | /bin/sh"
],
"depends_on": [
"clone"
],
"entrypoint": [
"/bin/sh",
"-c"
],
"environment": {},
"labels": {},
"name": "build",
"image": "docker.io/library/golang:latest",
"volumes": [
{
"name": "_workspace",
"path": "/drone/src"
}
],
"working_dir": "/drone/src"
},
{
"id": "random",
"args": [
"echo \"$DRONE_SCRIPT\" | /bin/sh"
],
"depends_on": [
"build"
],
"entrypoint": [
"/bin/sh",
"-c"
],
"environment": {},
"labels": {},
"name": "test",
"image": "docker.io/library/golang:latest",
"volumes": [
{
"name": "_workspace",
"path": "/drone/src"
}
],
"working_dir": "/drone/src"
}
],
"volumes": [
{
"temp": {
"id": "random",
"name": "_workspace",
"labels": {}
}
}
],
"network": {
"id": "random",
"labels": {}
}
}