Summary
Provides Jenkins build information for the current build.
- Namespace
- Cake
.Common .Build .Jenkins .Data - Base Types
-
- object
- JenkinsInfo
graph BT
Type-->Base0["JenkinsInfo"]
click Base0 "/api/Cake.Common.Build.Jenkins/JenkinsInfo"
Base0-->Base1["object"]
Type["JenkinsBuildInfo"]
class Type type-node
Syntax
public sealed class JenkinsBuildInfo : JenkinsInfo
Constructors
Name | Summary |
---|---|
JenkinsBuildInfo |
Initializes a new instance of the JenkinsBuildInfo class.
|
Properties
Name | Value | Summary |
---|---|---|
BuildDisplayName | string |
Gets the display name of the build.
|
BuildId | string |
Gets the build identifier which is identical to
BuildNumber starting from Jenkins 1.597 and a YYYY-MM-DD_hh-mm-ss timestamp for older builds.
|
BuildNumber | int |
Gets the build number.
|
BuildTag | string |
Gets the build tag which is a string of "jenkins-${JOB_NAME}-${BUILD_NUMBER}". All forward slashes (/) in the JOB_NAME are replaced with dashes (-).
|
BuildUrl | string |
Gets the build URL.
|
ExecutorNumber | int |
Gets the executor number.
|
Workspace | string |
Gets the absolute path of the workspace directory assigned to the build.
|
Methods
Name | Value | Summary |
---|---|---|
Get |
bool |
Gets an environment variable as a
bool .
Inherited from JenkinsInfo
|
Get |
int |
Gets an environment variable as a
int .
Inherited from JenkinsInfo
|
GetEnvironmentString |
string |
Gets an environment variable as a
string .
Inherited from JenkinsInfo
|
Extension Methods
Name | Value | Summary |
---|---|---|
Dump |
string |
Get a basic string representation of specified object.
From LoggingExtensions
Requires the Cake.Incubator addin
|
IsIn |
bool |
Checks if the source is contained in a list
From EnumerableExtensions
Requires the Cake.Incubator addin
|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From Extensions
Requires the Cake.Ftp addin
|
NotNull |
void |
From IssuesArgumentChecks
Requires the Cake.Issues addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|