Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Wercker): Removing wercker reverence #9915

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion packages/app/src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ window.spinnakerSettings = {
'pubsub',
'travis',
'webhook',
'wercker',
],
useClassicFirewallLabels: useClassicFirewallLabels,
};
1 change: 0 additions & 1 deletion packages/core/src/ci/igor.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import type { IBuild, IGcbTrigger, IJobConfig } from '../domain';
export enum BuildServiceType {
Jenkins = 'jenkins',
Travis = 'travis',
Wercker = 'wercker',
Concourse = 'concourse',
}

Expand Down
14 changes: 1 addition & 13 deletions packages/core/src/domain/ITrigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,7 @@ export interface IBuildTrigger extends ITrigger {
project: string;
propertyFile?: string;
master: string;
type: 'jenkins' | 'travis' | 'wercker' | 'concourse';
}

export interface IWerckerTrigger extends IBuildTrigger {
app: string;
pipeline: string;
type: 'wercker';
type: 'jenkins' | 'travis' | 'concourse';
}

export interface IConcourseTrigger extends IBuildTrigger {
Expand Down Expand Up @@ -90,9 +84,3 @@ export interface IWebhookTrigger extends ITrigger {
source: string;
payloadConstraints: { [key: string]: string };
}

export interface IWerckerTrigger extends IBuildTrigger {
app: string;
pipeline: string;
type: 'wercker';
}
8 changes: 0 additions & 8 deletions packages/core/src/help/help.contents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,12 +339,6 @@ const helpContents: { [key: string]: string } = {
If Travis reports the build status as UNSTABLE,
Spinnaker will mark the stage as TERMINAL; subsequent execution will be determined based on the configuration of the
<b>If build fails</b> option for this stage.`,
'pipeline.config.wercker.markUnstableAsSuccessful.true':
'If Wercker reports the build status as UNSTABLE, Spinnaker will mark the stage as SUCCEEDED and continue execution of the pipeline.',
'pipeline.config.wercker.markUnstableAsSuccessful.false': `
If Wercker reports the build status as UNSTABLE,
Spinnaker will mark the stage as FAILED; subsequent execution will be determined based on the configuration of the
<b>If build fails</b> option for this stage.`,
'pipeline.config.cron.expression':
'<strong>Format (Year is optional)</strong><p><samp>Seconds Minutes Hour DayOfMonth Month DayOfWeek (Year)</samp></p>' +
'<p><strong>Example: every 30 minutes</strong></p><samp>0 0/30 * * * ?</samp>' +
Expand Down Expand Up @@ -474,8 +468,6 @@ const helpContents: { [key: string]: string } = {
'if unchecked, marks the stage as successful right away without waiting for the Jenkins job to complete',
'travis.waitForCompletion':
'if unchecked, marks the stage as successful right away without waiting for the Travis job to complete',
'wercker.waitForCompletion':
'if unchecked, marks the stage as successful right away without waiting for the Wercker job to complete',
'script.waitForCompletion':
'if unchecked, marks the stage as successful right away without waiting for the script to complete',
// eslint-disable-next-line no-useless-escape
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading