This repository has been archived by the owner on Feb 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
common.cake
135 lines (122 loc) · 3.9 KB
/
common.cake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
//////////////////////////////////////////////////////////////////////
// HELPERS
//////////////////////////////////////////////////////////////////////
/// <summary>
/// Run a shell command (powershell or bash).
/// </summary>
/// <param name="command">The command to execute in the shell</param>
/// <returns>The exit status</returns>
int Shell(string command)
{
return Shell(command, new ProcessSettings());
}
/// <summary>
/// Run a shell command (powershell or bash).
/// </summary>
/// <param name="command">The command to execute in the shell</param>
/// <param name="workingDirectory">Working directory</param>
/// <returns>The exit status</returns>
int Shell(string command, string workingDirectory)
{
return Shell(command, new ProcessSettings { WorkingDirectory = workingDirectory });
}
/// <summary>
/// Run a shell command (powershell or bash).
/// </summary>
/// <param name="command">The command to execute in the shell</param>
/// <param name="settings">Optional settings</param>
/// <returns>The exit status</returns>
int Shell(string command, ProcessSettings settings)
{
if (settings == null)
{
throw new ArgumentNullException("settings");
}
var exec = IsRunningOnWindows() ? "powershell" : "bash";
var args = IsRunningOnWindows()
? "/Command " + command
: "-C " + command;
return Run(exec, args, settings);
}
/// <summary>
/// Run the given executable with the given arguments.
/// </summary>
/// <param name="exec">Executable to run</param>
/// <param name="args">Arguments</param>
/// <returns>The exit status</returns>
int Run(string exec, string args)
{
return Run(exec, args, new ProcessSettings());
}
/// <summary>
/// Run the given executable with the given arguments.
/// </summary>
/// <param name="exec">Executable to run</param>
/// <param name="args">Arguments</param>
/// <param name="workingDirectory">Working directory</param>
/// <returns>The exit status</returns>
int Run(string exec, string args, string workingDirectory)
{
return Run(exec, args, new ProcessSettings { WorkingDirectory = workingDirectory});
}
/// <summary>
/// Run the given executable with the given arguments.
/// </summary>
/// <param name="exec">Executable to run</param>
/// <param name="args">Arguments</param>
/// <param name="workingDirectory">Working directory</param>
/// <returns>The exit status</returns>
int Run(string exec, string args, ProcessSettings settings)
{
if (settings == null)
{
throw new ArgumentNullException("settings");
}
Verbose("{0} {1}", exec, args);
settings.Arguments = args;
return StartProcess(exec, settings);
}
void EnsureTool(string tool, string arguments)
{
try
{
ExecuteCommand(tool + (!string.IsNullOrEmpty(arguments) ? " " + arguments : null));
Information("The tool \"" + tool + "\" is present...");
}
catch(Exception ex)
{
Error("The tool \"" + tool + "\" is not present...");
throw;
}
}
void ExecuteCommand(string command, string workingDir = null)
{
if (string.IsNullOrEmpty(workingDir))
workingDir = System.IO.Directory.GetCurrentDirectory();
System.Diagnostics.ProcessStartInfo processStartInfo;
if (IsRunningOnWindows())
{
processStartInfo = new System.Diagnostics.ProcessStartInfo
{
UseShellExecute = false,
WorkingDirectory = workingDir,
FileName = "cmd",
Arguments = "/C " + command,
};
}
else
{
processStartInfo = new System.Diagnostics.ProcessStartInfo
{
UseShellExecute = false,
WorkingDirectory = workingDir,
Arguments = command,
};
}
using (var process = System.Diagnostics.Process.Start(processStartInfo))
{
process.WaitForExit();
if (process.ExitCode != 0)
throw new Exception(string.Format("Exit code {0} from {1}", process.ExitCode, command));
}
}