2020-09-09 09:01:18 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google LLC All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {ActiveReleaseTrains} from '../../versioning/active-release-trains';
|
|
|
|
import {semverInc} from '../../versioning/inc-semver';
|
|
|
|
import {ReleaseAction} from '../actions';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cuts the first release candidate for a release-train currently in the
|
|
|
|
* feature-freeze phase. The version is bumped from `next` to `rc.0`.
|
|
|
|
*/
|
|
|
|
export class CutReleaseCandidateAction extends ReleaseAction {
|
|
|
|
private _newVersion = semverInc(this.active.releaseCandidate!.version, 'prerelease', 'rc');
|
|
|
|
|
2021-07-07 13:58:22 -04:00
|
|
|
override async getDescription() {
|
2020-09-09 09:01:18 -04:00
|
|
|
const newVersion = this._newVersion;
|
|
|
|
return `Cut a first release-candidate for the feature-freeze branch (v${newVersion}).`;
|
|
|
|
}
|
|
|
|
|
2021-07-07 13:58:22 -04:00
|
|
|
override async perform() {
|
2020-09-09 09:01:18 -04:00
|
|
|
const {branchName} = this.active.releaseCandidate!;
|
|
|
|
const newVersion = this._newVersion;
|
|
|
|
|
2021-07-15 19:26:26 -04:00
|
|
|
const {pullRequest, releaseNotes} =
|
2021-04-19 14:58:32 -04:00
|
|
|
await this.checkoutBranchAndStageVersion(newVersion, branchName);
|
2020-09-09 09:01:18 -04:00
|
|
|
|
2021-07-15 19:26:26 -04:00
|
|
|
await this.waitForPullRequestToBeMerged(pullRequest);
|
2021-05-05 12:11:05 -04:00
|
|
|
await this.buildAndPublish(releaseNotes, branchName, 'next');
|
2021-04-19 14:58:32 -04:00
|
|
|
await this.cherryPickChangelogIntoNextBranch(releaseNotes, branchName);
|
2020-09-09 09:01:18 -04:00
|
|
|
}
|
|
|
|
|
2021-06-07 15:00:18 -04:00
|
|
|
static override async isActive(active: ActiveReleaseTrains) {
|
2020-09-09 09:01:18 -04:00
|
|
|
// A release-candidate can be cut for an active release-train currently
|
|
|
|
// in the feature-freeze phase.
|
|
|
|
return active.releaseCandidate !== null &&
|
|
|
|
active.releaseCandidate.version.prerelease[0] === 'next';
|
|
|
|
}
|
|
|
|
}
|