Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import jetbrains.buildServer.serverSide.WebLinks;
import jetbrains.buildServer.vcs.VcsRootInstanceEntry;
import octopus.teamcity.common.OctopusConstants;
import org.jetbrains.annotations.NotNull;

public class OctopusBuildInformationBuildStartProcessor implements BuildStartContextProcessor {

Expand All @@ -25,7 +26,7 @@ public OctopusBuildInformationBuildStartProcessor(
}

@Override
public void updateParameters(final BuildStartContext buildStartContext) {
public void updateParameters(@NotNull final BuildStartContext buildStartContext) {
try {
boolean buildContainsBuildInformationStep =
buildStartContext.getRunnerContexts().stream()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ public String getType() {
return OctopusConstants.METADATA_RUNNER_TYPE;
}

@NotNull
@Override
public String getDisplayName() {
return "OctopusDeploy: Build Information";
}

@NotNull
@Override
public String getDescription() {
return "Collect information related to the build, including commit messages, and store in custom build information in Octopus.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ public String getType() {
return OctopusConstants.CREATE_RELEASE_RUNNER_TYPE;
}

@NotNull
@Override
public String getDisplayName() {
return "OctopusDeploy: Create release";
}

@NotNull
@Override
public String getDescription() {
return "Creates and, optionally, deploys releases in Octopus Deploy";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ public String getType() {
return OctopusConstants.DEPLOY_RELEASE_RUNNER_TYPE;
}

@NotNull
@Override
public String getDisplayName() {
return "OctopusDeploy: Deploy release";
}

@NotNull
@Override
public String getDescription() {
return "Deploys a specific release in Octopus Deploy";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,13 @@ public String getType() {
return OctopusConstants.PACK_PACKAGE_RUNNER_TYPE;
}

@NotNull
@Override
public String getDisplayName() {
return "OctopusDeploy: Pack";
}

@NotNull
@Override
public String getDescription() {
return "Packages files (.nupkg, .zip, .tar.gz, etc.)";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ public String getType() {
return OctopusConstants.PROMOTE_RELEASE_RUNNER_TYPE;
}

@NotNull
@Override
public String getDisplayName() {
return "OctopusDeploy: Promote release";
}

@NotNull
@Override
public String getDescription() {
return "Promotes a release from one environment to another with Octopus Deploy";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ public String getType() {
return OctopusConstants.PUSH_PACKAGE_RUNNER_TYPE;
}

@NotNull
@Override
public String getDisplayName() {
return "OctopusDeploy: Push Packages";
}

@NotNull
@Override
public String getDescription() {
return "Pushes package files (.nupkg, .zip, .tar.gz, etc.) to an Octopus Deploy server";
Expand Down
Loading