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
|
// eslint-disable-next-line no-unused-vars
|
||||||
branchName,
|
branchName,
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
defaultSecretsArray) {
|
defaultSecretsArray) { }
|
||||||
throw new Error('Method not implemented.');
|
|
||||||
}
|
|
||||||
setupSharedBuildResources(
|
setupSharedBuildResources(
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
buildUid,
|
buildUid,
|
||||||
|
|
@ -877,9 +875,7 @@ class AWSBuildEnvironment {
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
branchName,
|
branchName,
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
defaultSecretsArray) {
|
defaultSecretsArray) { }
|
||||||
throw new Error('Method not implemented.');
|
|
||||||
}
|
|
||||||
runBuildTask(buildId, image, commands, mountdir, workingdir, environment, secrets) {
|
runBuildTask(buildId, image, commands, mountdir, workingdir, environment, secrets) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const ECS = new SDK.ECS();
|
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,
|
branchName: string,
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
||||||
) {
|
) {}
|
||||||
throw new Error('Method not implemented.');
|
|
||||||
}
|
|
||||||
setupSharedBuildResources(
|
setupSharedBuildResources(
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
buildUid: string,
|
buildUid: string,
|
||||||
|
|
@ -37,9 +35,7 @@ class AWSBuildEnvironment implements RemoteBuilderProviderInterface {
|
||||||
branchName: string,
|
branchName: string,
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
||||||
) {
|
) {}
|
||||||
throw new Error('Method not implemented.');
|
|
||||||
}
|
|
||||||
|
|
||||||
async runBuildTask(
|
async runBuildTask(
|
||||||
buildId: string,
|
buildId: string,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue