You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Catch2 built for LinuxArm64 - new option to run apps in containerized mode - builds docker image, setup and cleanup - StringOp BuildGraph element for string operations (replace, to lower etc) #jira UE-193565 #rb ue-qa-sdets [CL 27758925 by chris constantinescu in ue5-main branch]
28 lines
606 B
C#
28 lines
606 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Gauntlet
|
|
{
|
|
/// <summary>
|
|
/// POCO class for apps that can run through containers.
|
|
/// </summary>
|
|
public class ContainerInfo
|
|
{
|
|
public string ImageName { get; set; }
|
|
public string ContainerName { get; set; }
|
|
public string RunCommandPrepend { get; set; }
|
|
public string WorkingDir { get; set; }
|
|
}
|
|
|
|
public interface IContainerized
|
|
{
|
|
/// <summary>
|
|
/// For apps running through Docker containers.
|
|
/// </summary>
|
|
ContainerInfo ContainerInfo { get; set; }
|
|
}
|
|
}
|