All checks were successful
build / build (push) Successful in 2m32s
## What I have done: - basic generation of json files - supported parsers: - healthcheck - result-detail - result-status - file - log - dummy - keyword (keyword, clangtidy, cppcheck, cpplint) - diff - `convert` functions is mature, tested in engr151-24fa last two homeworks and engr151-24fa p3 - teapot and healthcheck should be up to date ## TODO - update all new comming parsers in future. @bomingzh Could you please help me do a code review first then I shall fix all things and rebase? I checked the source code of JOJ3 currently, and find we have more parsers, such as plugin and tierscore, I haven''t added them yet, and some of the keys might have changed such as clang-tidy, can you help me take a look if current version is still up to date? I ll redo the fix tomorrow Co-authored-by: Boming Zhang <bomingzh@sjtu.edu.cn> Reviewed-on: #10 Reviewed-by: 张泊明518370910136 <bomingzh@sjtu.edu.cn> Co-authored-by: jon-lee <jon-lee@sjtu.edu.cn> Co-committed-by: jon-lee <jon-lee@sjtu.edu.cn>
12 lines
331 B
Python
12 lines
331 B
Python
from pathlib import Path
|
|
|
|
from joj3_config_generator.models.common import Memory, Time
|
|
|
|
DEFAULT_CPU_LIMIT = Time("1s")
|
|
DEFAULT_MEMORY_LIMIT = Memory("128m")
|
|
DEFAULT_FILE_LIMIT = Memory("32m")
|
|
|
|
JOJ3_CONFIG_ROOT = Path("/home/tt/.config/joj")
|
|
TEAPOT_CONFIG_ROOT = Path("/home/tt/.config/teapot")
|
|
CACHE_ROOT = Path("/home/tt/.cache")
|