Set runner environment in context and env (#2518)

* Set runner environment in runner context and env

Extract runner_environment from the global context and expose in the
`github.runner` context and env as `RUNNER_ENVIRONMENT`.

Signed-off-by: Philip Harrison <[email protected]>

* encoding.

---------

Signed-off-by: Philip Harrison <[email protected]>
Co-authored-by: Tingluo Huang <[email protected]>
This commit is contained in:
Philip Harrison
2023-05-26 13:08:41 -04:00
committed by GitHub
co-authored by Tingluo Huang
parent 8db8bbe13a
commit 21b49c542c
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -150,6 +150,11 @@ namespace GitHub.Runner.Worker
_runnerSettings = HostContext.GetService<IConfigurationStore>().GetSettings();
jobContext.SetRunnerContext("name", _runnerSettings.AgentName);
if (jobContext.Global.Variables.TryGetValue(WellKnownDistributedTaskVariables.RunnerEnvironment, out var runnerEnvironment))
{
jobContext.SetRunnerContext("environment", runnerEnvironment);
}
string toolsDirectory = HostContext.GetDirectory(WellKnownDirectory.Tools);
Directory.CreateDirectory(toolsDirectory);
jobContext.SetRunnerContext("tool_cache", toolsDirectory);