remove k8s configs, update worker for multi-languages support, add local-submit option

This commit is contained in:
prixod
2025-10-27 21:28:46 +04:00
parent 7f0e7fbe20
commit 6041acb8ed
38 changed files with 2205 additions and 342 deletions

View File

@@ -0,0 +1,15 @@
namespace LiquidCode.Tester.Worker.Models;
public class LanguageConfig
{
public string DefaultVersion { get; set; } = "latest";
public Dictionary<string, VersionConfig> Versions { get; set; } = new();
}
public class VersionConfig
{
public string? Compiler { get; set; }
public string? CompilerFlags { get; set; }
public string? Executable { get; set; }
public string? Runtime { get; set; }
}