Compare commits

..

No commits in common. "4ce9726296bde680da24f1ec2718810a78c18547" and "ce55615dcb23cef4e51fcaf8d8d9b0b0750ac780" have entirely different histories.

100
conf.json
View File

@ -1,55 +1,57 @@
{ {
"stages": [ "stage": {
{ "stages": [
"name": "healthcheck", {
"executor": { "name": "healthcheck",
"name": "sandbox", "executor": {
"with": { "name": "sandbox",
"default": { "with": {
"args": [ "default": {
"/tmp/repo-health-checker", "args": [
"-root=.", "/tmp/repo-health-checker",
"-meta=readme" "-root=.",
], "-meta=readme"
"env": [ ],
"PATH=/usr/bin:/bin" "env": [
], "PATH=/usr/bin:/bin"
"cpuLimit": 10000000000, ],
"memoryLimit": 104857600, "cpuLimit": 10000000000,
"procLimit": 50, "memoryLimit": 104857600,
"copyInDir": ".", "procLimit": 50,
"copyIn": { "copyInDir": ".",
"/tmp/repo-health-checker": { "copyIn": {
"src": "./../../../../../../build/repo-health-checker" "/tmp/repo-health-checker": {
"src": "./../../../../../../build/repo-health-checker"
}
},
"copyOut": [
"stdout",
"stderr"
],
"stdin": {
"content": ""
},
"stdout": {
"name": "stdout",
"max": 4096
},
"stderr": {
"name": "stderr",
"max": 4096
} }
},
"copyOut": [
"stdout",
"stderr"
],
"stdin": {
"content": ""
},
"stdout": {
"name": "stdout",
"max": 4096
},
"stderr": {
"name": "stderr",
"max": 4096
} }
} }
} },
}, "parsers": [
"parsers": [ {
{ "name": "healthcheck",
"name": "healthcheck", "with": {
"with": { "score": 10,
"score": 10, "comment": " + comment from toml conf"
"comment": " + comment from toml conf" }
} }
} ]
] }
} ]
] }
} }