mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
Compare commits
3 Commits
users/juli
...
v2.163.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b15230f7a1 | ||
|
|
9bbbca9e5d | ||
|
|
2cac011558 |
@@ -1,13 +1,11 @@
|
|||||||
## Features
|
## Features
|
||||||
- Added the "severity" keyword to allow action authors to set the default severity for problem matchers (#203)
|
- N/A
|
||||||
|
|
||||||
## Bugs
|
## Bugs
|
||||||
- Fixed generated self-hosted runner names to never go over 80 characters (helps Windows customers) (#193)
|
- Fix scenario where Tool Cache folder in "Hosted macOS" environments was empty (#232)
|
||||||
- Fixed `PrepareActions_DownloadActionFromGraph` test by pointing to an active Actions repository (#205)
|
|
||||||
|
|
||||||
## Misc
|
## Misc
|
||||||
- Updated the publish and download artifact actions to use the v2 endpoint (#188)
|
- N/A
|
||||||
- Updated the service name on self-hosted runner name to include repository or organization information (#193)
|
|
||||||
|
|
||||||
## Windows x64
|
## Windows x64
|
||||||
We recommend configuring the runner under "<DRIVE>:\actions-runner". This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows
|
We recommend configuring the runner under "<DRIVE>:\actions-runner". This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows
|
||||||
|
|||||||
@@ -208,6 +208,11 @@ namespace GitHub.Runner.Common
|
|||||||
public static readonly string StepDebug = "ACTIONS_STEP_DEBUG";
|
public static readonly string StepDebug = "ACTIONS_STEP_DEBUG";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static class Agent
|
||||||
|
{
|
||||||
|
public static readonly string ToolsDirectory = "agent.ToolsDirectory";
|
||||||
|
}
|
||||||
|
|
||||||
public static class System
|
public static class System
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -246,8 +246,9 @@ namespace GitHub.Runner.Common
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case WellKnownDirectory.Tools:
|
case WellKnownDirectory.Tools:
|
||||||
path = Environment.GetEnvironmentVariable("RUNNER_TOOL_CACHE");
|
// TODO: Coallesce to just check RUNNER_TOOL_CACHE when images stabilize
|
||||||
|
path = Environment.GetEnvironmentVariable("RUNNER_TOOL_CACHE") ?? Environment.GetEnvironmentVariable("RUNNER_TOOLSDIRECTORY") ?? Environment.GetEnvironmentVariable("AGENT_TOOLSDIRECTORY") ?? Environment.GetEnvironmentVariable(Constants.Variables.Agent.ToolsDirectory);
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(path))
|
if (string.IsNullOrEmpty(path))
|
||||||
{
|
{
|
||||||
path = Path.Combine(
|
path = Path.Combine(
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ using GitHub.Runner.Sdk;
|
|||||||
using System;
|
using System;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Reflection;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -14,6 +15,9 @@ namespace GitHub.Runner.Listener
|
|||||||
{
|
{
|
||||||
public static int Main(string[] args)
|
public static int Main(string[] args)
|
||||||
{
|
{
|
||||||
|
// Add environment variables from .env file
|
||||||
|
LoadAndSetEnv();
|
||||||
|
|
||||||
using (HostContext context = new HostContext("Runner"))
|
using (HostContext context = new HostContext("Runner"))
|
||||||
{
|
{
|
||||||
return MainAsync(context, args).GetAwaiter().GetResult();
|
return MainAsync(context, args).GetAwaiter().GetResult();
|
||||||
@@ -25,7 +29,7 @@ namespace GitHub.Runner.Listener
|
|||||||
// 1: Terminate failure
|
// 1: Terminate failure
|
||||||
// 2: Retriable failure
|
// 2: Retriable failure
|
||||||
// 3: Exit for self update
|
// 3: Exit for self update
|
||||||
public async static Task<int> MainAsync(IHostContext context, string[] args)
|
private async static Task<int> MainAsync(IHostContext context, string[] args)
|
||||||
{
|
{
|
||||||
Tracing trace = context.GetTrace(nameof(GitHub.Runner.Listener));
|
Tracing trace = context.GetTrace(nameof(GitHub.Runner.Listener));
|
||||||
trace.Info($"Runner is built for {Constants.Runner.Platform} ({Constants.Runner.PlatformArchitecture}) - {BuildConstants.RunnerPackage.PackageName}.");
|
trace.Info($"Runner is built for {Constants.Runner.Platform} ({Constants.Runner.PlatformArchitecture}) - {BuildConstants.RunnerPackage.PackageName}.");
|
||||||
@@ -83,22 +87,6 @@ namespace GitHub.Runner.Listener
|
|||||||
return Constants.Runner.ReturnCode.TerminatedError;
|
return Constants.Runner.ReturnCode.TerminatedError;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add environment variables from .env file
|
|
||||||
string envFile = Path.Combine(context.GetDirectory(WellKnownDirectory.Root), ".env");
|
|
||||||
if (File.Exists(envFile))
|
|
||||||
{
|
|
||||||
var envContents = File.ReadAllLines(envFile);
|
|
||||||
foreach (var env in envContents)
|
|
||||||
{
|
|
||||||
if (!string.IsNullOrEmpty(env) && env.IndexOf('=') > 0)
|
|
||||||
{
|
|
||||||
string envKey = env.Substring(0, env.IndexOf('='));
|
|
||||||
string envValue = env.Substring(env.IndexOf('=') + 1);
|
|
||||||
Environment.SetEnvironmentVariable(envKey, envValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse the command line args.
|
// Parse the command line args.
|
||||||
var command = new CommandSettings(context, args);
|
var command = new CommandSettings(context, args);
|
||||||
trace.Info("Arguments parsed");
|
trace.Info("Arguments parsed");
|
||||||
@@ -136,5 +124,34 @@ namespace GitHub.Runner.Listener
|
|||||||
return Constants.Runner.ReturnCode.RetryableError;
|
return Constants.Runner.ReturnCode.RetryableError;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void LoadAndSetEnv()
|
||||||
|
{
|
||||||
|
var binDir = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
|
||||||
|
var rootDir = new DirectoryInfo(binDir).Parent.FullName;
|
||||||
|
string envFile = Path.Combine(rootDir, ".env");
|
||||||
|
if (File.Exists(envFile))
|
||||||
|
{
|
||||||
|
var envContents = File.ReadAllLines(envFile);
|
||||||
|
foreach (var env in envContents)
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(env))
|
||||||
|
{
|
||||||
|
var separatorIndex = env.IndexOf('=');
|
||||||
|
if (separatorIndex > 0)
|
||||||
|
{
|
||||||
|
string envKey = env.Substring(0, separatorIndex);
|
||||||
|
string envValue = null;
|
||||||
|
if (env.Length > separatorIndex + 1)
|
||||||
|
{
|
||||||
|
envValue = env.Substring(separatorIndex + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
Environment.SetEnvironmentVariable(envKey, envValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2.162.0
|
2.163.1
|
||||||
|
|||||||
Reference in New Issue
Block a user