mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
25 lines
966 B
C#
25 lines
966 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using GitHub.DistributedTask.WebApi;
|
|
using GitHub.Runner.Common.Util;
|
|
using GitHub.Runner.Worker.Container;
|
|
|
|
namespace GitHub.Runner.Worker
|
|
{
|
|
public sealed class GlobalContext
|
|
{
|
|
public ContainerInfo Container { get; set; }
|
|
public List<ServiceEndpoint> Endpoints { get; set; }
|
|
public IDictionary<String, String> EnvironmentVariables { get; set; }
|
|
public PlanFeatures Features { get; set; }
|
|
public IList<String> FileTable { get; set; }
|
|
public IDictionary<String, IDictionary<String, String>> JobDefaults { get; set; }
|
|
public TaskOrchestrationPlanReference Plan { get; set; }
|
|
public List<string> PrependPath { get; set; }
|
|
public List<ContainerInfo> ServiceContainers { get; set; }
|
|
public StepsContext StepsContext { get; set; }
|
|
public Variables Variables { get; set; }
|
|
public bool WriteDebug { get; set; }
|
|
}
|
|
}
|