From 4b00eacf88277a06bbb5052e5b2688cd622521d0 Mon Sep 17 00:00:00 2001 From: zjc_he Date: Tue, 7 May 2024 16:00:13 +0800 Subject: [PATCH] fix(conf.toml): Make the memory limit 4 times larger --- conf.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.toml b/conf.toml index b0842ca..c68371c 100644 --- a/conf.toml +++ b/conf.toml @@ -33,7 +33,7 @@ name = "sandbox" args = ["bash", "-c", "clang-tidy --header-filter=.* --quiet -checks=* src/*.cpp -p build"] env = ["PATH=/usr/bin:/bin:/usr/local/bin"] cpuLimit = 10_000_000_000 -memoryLimit = 104_857_600 +memoryLimit = 419_430_400 procLimit = 50 copyInCwd = true copyOut = ["stdout"]