remove k8s configs, update worker for multi-languages support, add local-submit option
This commit is contained in:
15
src/LiquidCode.Tester.Worker/Models/LanguageConfig.cs
Normal file
15
src/LiquidCode.Tester.Worker/Models/LanguageConfig.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user