BuildSystemAliases.

GitLabCI(ICakeContext) Method

Summary

Gets a GitLabCIProvider instance that can be used to obtain information from the GitLab CI environment.
Namespace
Cake.Common.Build
Containing Type
BuildSystemAliases

Syntax

[CakePropertyAlias(Cache = true)]
[CakeNamespaceImport("Cake.Common.Build.GitLabCI")]
[CakeNamespaceImport("Cake.Common.Build.GitLabCI.Data")]
public static IGitLabCIProvider GitLabCI(this ICakeContext context)

Examples

var isGitLabCIBuild = GitLabCI.IsRunningOnGitLabCI;

Attributes

Type Description
CakePropertyAliasAttribute An attribute used to mark script property aliases.
CakeNamespaceImportAttribute An attribute used to hint Cake about additional namespaces that need to be imported for an alias to work. This attribute can mark an extension method, the extension method class, or the assembly to provide a global set of imports.
CakeNamespaceImportAttribute An attribute used to hint Cake about additional namespaces that need to be imported for an alias to work. This attribute can mark an extension method, the extension method class, or the assembly to provide a global set of imports.

Parameters

Name Type Description
context ICakeContext The context.

Return Value

Type Description
IGitLabCIProvider A Cake.Common.Build.GitLabCI instance.