2023-10-31 10:15:08 +00:00
|
|
|
|
using Core;
|
2023-11-12 09:07:23 +00:00
|
|
|
|
using KubernetesWorkflow.Types;
|
2023-10-31 10:15:08 +00:00
|
|
|
|
|
|
|
|
|
namespace DeployAndRunPlugin
|
|
|
|
|
{
|
|
|
|
|
public static class CoreInterfaceExtensions
|
|
|
|
|
{
|
|
|
|
|
public static RunningContainer DeployAndRunContinuousTests(this CoreInterface ci, RunConfig runConfig)
|
|
|
|
|
{
|
|
|
|
|
return ci.GetPlugin<DeployAndRunPlugin>().Run(runConfig);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|