commit 7b810ac02ac4f1ac7136678e1b0c674b40ff85eb Author: Boming Zhang Date: Wed Oct 9 20:54:16 2024 -0400 faet: init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..06e3da9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +stages_result.json +*.log diff --git a/conf.json b/conf.json new file mode 100644 index 0000000..b7f45a1 --- /dev/null +++ b/conf.json @@ -0,0 +1,43 @@ +{ + "stage": { + "stages": [ + { + "name": "run", + "executor": { + "name": "sandbox", + "with": { + "default": { + "args": ["ls", "-lha"], + "env": ["PATH=/usr/bin:/bin"], + "cpuLimit": 10000000000, + "memoryLimit": 104857600, + "procLimit": 50, + "copyInDir": ".", + "copyOut": ["stdout", "stderr"], + "copyOutCached": [], + "stdin": { + "content": "" + }, + "stdout": { + "name": "stdout", + "max": 4096 + }, + "stderr": { + "name": "stderr", + "max": 4096 + } + } + } + }, + "parsers": [ + { + "name": "result-status" + }, + { + "name": "result-detail" + } + ] + } + ] + } +} diff --git a/expected.json b/expected.json new file mode 100644 index 0000000..6537d2a --- /dev/null +++ b/expected.json @@ -0,0 +1 @@ +[{"name":"compile","results":[{"score":0,"comment":"Unexpected executor status: Nonzero Exit Status."}],"force_quit":true}]