Skip to content

Commit

Permalink
Merge branch 'huijbers/descriptions-and-superchain-bump' of github.co…
Browse files Browse the repository at this point in the history
…m:cdklabs/aws-delivlib into huijbers/descriptions-and-superchain-bump
  • Loading branch information
rix0rrr committed Dec 9, 2024
2 parents 77b65cd + 895004f commit f6e76aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/__tests__/signing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Repository } from 'aws-cdk-lib/aws-codecommit';
import { Role, ServicePrincipal } from 'aws-cdk-lib/aws-iam';
import { Function } from 'aws-cdk-lib/aws-lambda';
import { Bucket } from 'aws-cdk-lib/aws-s3';
import { DEFAULT_SUPERCHAIN_IMAGE } from '../constants';

Check failure on line 7 in lib/__tests__/signing.test.ts

View workflow job for this annotation

GitHub Actions / build

'DEFAULT_SUPERCHAIN_IMAGE' is declared but its value is never read.
import { Pipeline } from '../pipeline';
import { CodeCommitRepo } from '../repo';

Expand Down
2 changes: 1 addition & 1 deletion lib/publishing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import {
} from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { ICodeSigningCertificate } from './code-signing';
import { DEFAULT_SUPERCHAIN_IMAGE } from './constants';
import { OpenPGPKeyPair } from './open-pgp-key-pair';
import * as permissions from './permissions';
import { AddToPipelineOptions, IPublisher } from './pipeline';
import { WritableGitHubRepo } from './repo';
import { LinuxPlatform, Shellable } from './shellable';
import { noUndefined } from './util';
import { DEFAULT_SUPERCHAIN_IMAGE } from './constants';

/**
* Type of access permissions to request from npmjs.
Expand Down
2 changes: 1 addition & 1 deletion lib/signing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import { IFunction } from 'aws-cdk-lib/aws-lambda';
import { IBucket } from 'aws-cdk-lib/aws-s3';
import { Construct, IConstruct } from 'constructs';
import { BuildSpec } from './build-spec';
import { DEFAULT_SUPERCHAIN_IMAGE } from './constants';
import { AddToPipelineOptions } from './pipeline';
import { LinuxPlatform, Shellable } from './shellable';
import { DEFAULT_SUPERCHAIN_IMAGE } from './constants';

export interface ISigner extends IConstruct {
addToPipeline(stage: IStage, id: string, options: AddToPipelineOptions): Artifact;
Expand Down

0 comments on commit f6e76aa

Please sign in to comment.