From c430cb6ba940313386e6703c30aba0e4ddd41ea1 Mon Sep 17 00:00:00 2001 From: zzjc1234 <2359047351@qq.com> Date: Thu, 17 Oct 2024 15:39:39 +0800 Subject: [PATCH] fix: .gitignore --- conf.json | 81 +++++++++++++++++-------------------------------------- 1 file changed, 25 insertions(+), 56 deletions(-) diff --git a/conf.json b/conf.json index 21b0948..66d1687 100644 --- a/conf.json +++ b/conf.json @@ -1,61 +1,30 @@ { - "stages": [ - { - "name": "healthcheck", - "executor": { - "name": "sandbox", - "with": { - "default": { - "args": [ - "./healthcheck", - "-root=.", - "-whitelist=stderr", - "-whitelist=stdout", - "-whitelist=.*\\.toml", - "-whitelist=.*\\.md", - "-whitelist=healthcheck", - "-whitelist=.*\\.json", - "-whitelist=.git.*", - "-meta=readme", - "-repoSize=0.1" - ], - "env": [ - "PATH=/usr/bin:/bin" - ], - "cpuLimit": 10000000000, - "memoryLimit": 104857600, - "procLimit": 50, - "copyInDir": ".", - "copyIn": { - "healthcheck": { - "src": "./../../../../../../build/healthcheck" - } - }, - "copyOut": [ - "stdout", - "stderr" - ], - "stdin": { - "content": "" - }, - "stdout": { - "name": "stdout", - "max": 4096 - }, - "stderr": { - "name": "stderr", - "max": 4096 - } - } - } - }, - "parser": { - "name": "healthcheck", - "with": { - "score": 10, - "comment": " + comment from toml conf" + "stages" : [ { + "name" : "healthcheck", + "executor" : { + "name" : "sandbox", + "with" : { + "default" : { + "args" : + [ "./healthcheck", "-root=.", "-meta=readme", "-repoSize=0.1" ], + "env" : ["PATH=/usr/bin:/bin"], + "cpuLimit" : 10000000000, + "memoryLimit" : 104857600, + "procLimit" : 50, + "copyInDir" : ".", + "copyIn" : { + "healthcheck" : {"src" : "./../../../../../../build/healthcheck"} + }, + "copyOut" : [ "stdout", "stderr" ], + "stdin" : {"content" : ""}, + "stdout" : {"name" : "stdout", "max" : 4096}, + "stderr" : {"name" : "stderr", "max" : 4096} } } + }, + "parser" : { + "name" : "healthcheck", + "with" : {"score" : 10, "comment" : " + comment from toml conf"} } - ] + } ] }