Fix aws shared resources method not implemented error
parent
606fdc048f
commit
5de18befd0
|
|
@ -866,9 +866,7 @@ class AWSBuildEnvironment {
|
|||
// eslint-disable-next-line no-unused-vars
|
||||
branchName,
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
defaultSecretsArray) {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
defaultSecretsArray) { }
|
||||
setupSharedBuildResources(
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
buildUid,
|
||||
|
|
@ -877,9 +875,7 @@ class AWSBuildEnvironment {
|
|||
// eslint-disable-next-line no-unused-vars
|
||||
branchName,
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
defaultSecretsArray) {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
defaultSecretsArray) { }
|
||||
runBuildTask(buildId, image, commands, mountdir, workingdir, environment, secrets) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const ECS = new SDK.ECS();
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -25,9 +25,7 @@ class AWSBuildEnvironment implements RemoteBuilderProviderInterface {
|
|||
branchName: string,
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
||||
) {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
) {}
|
||||
setupSharedBuildResources(
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
buildUid: string,
|
||||
|
|
@ -37,9 +35,7 @@ class AWSBuildEnvironment implements RemoteBuilderProviderInterface {
|
|||
branchName: string,
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
||||
) {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
) {}
|
||||
|
||||
async runBuildTask(
|
||||
buildId: string,
|
||||
|
|
|
|||
Loading…
Reference in New Issue