Skip to content

Commit

Permalink
[ENG-11445] Add verbose-fastlane for android builds
Browse files Browse the repository at this point in the history
  • Loading branch information
khamilowicz committed Apr 2, 2024
1 parent 8e95627 commit a3f35a3
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/eas-cli/src/build/runBuildAndSubmit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ async function prepareAndStartSubmissionAsync({
projectId: buildCtx.projectId,
exp: buildCtx.exp,
vcsClient: buildCtx.vcsClient,
isVerboseFastlaneEnabled: false,
});

if (moreBuilds) {
Expand Down
1 change: 1 addition & 0 deletions packages/eas-cli/src/submit/android/AndroidSubmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export default class AndroidSubmitter extends BaseSubmitter<
changesNotSentForReview,
releaseStatus,
rollout,
isVerboseFastlaneEnabled: this.ctx.isVerboseFastlaneEnabled,
...serviceAccountKeyResult.result,
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ describe(AndroidSubmitCommand, () => {
changesNotSentForReview: false,
},
nonInteractive: true,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -159,6 +160,7 @@ describe(AndroidSubmitCommand, () => {
changesNotSentForReview: false,
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -203,6 +205,7 @@ describe(AndroidSubmitCommand, () => {
changesNotSentForReview: false,
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -250,6 +253,7 @@ describe(AndroidSubmitCommand, () => {
changesNotSentForReview: false,
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -312,6 +316,7 @@ describe(AndroidSubmitCommand, () => {
changesNotSentForReview: false,
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -372,6 +377,7 @@ describe(AndroidSubmitCommand, () => {
changesNotSentForReview: false,
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -439,6 +445,7 @@ describe(AndroidSubmitCommand, () => {
changesNotSentForReview: false,
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ describe(getServiceAccountKeyResultAsync, () => {
changesNotSentForReview: false,
},
nonInteractive: true,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -198,6 +199,7 @@ describe(getServiceAccountKeyResultAsync, () => {
changesNotSentForReview: false,
},
nonInteractive: true,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -236,6 +238,7 @@ describe(getServiceAccountKeyResultAsync, () => {
changesNotSentForReview: false,
},
nonInteractive: true,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down
2 changes: 1 addition & 1 deletion packages/eas-cli/src/submit/ios/IosSubmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export interface IosSubmissionOptions
archiveSource: ArchiveSource;
appSpecificPasswordSource?: AppSpecificPasswordSource;
ascApiKeySource?: AscApiKeySource;
isVerboseFastlaneEnabled: boolean;
isVerboseFastlaneEnabled?: boolean;
}

interface ResolvedSourceOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ async function getIosSubmissionContextAsync(): Promise<SubmissionContext<Platfor
language: 'en-US',
},
nonInteractive: true,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -249,6 +250,7 @@ describe(getAscApiKeyResultAsync, () => {
language: 'en-US',
},
nonInteractive: true,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ describe(IosSubmitCommand, () => {
ascAppId: '12345678',
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -134,6 +135,7 @@ describe(IosSubmitCommand, () => {
language: 'en-US',
},
nonInteractive: true,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -169,6 +171,7 @@ describe(IosSubmitCommand, () => {
ascAppId: '12345678',
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -231,6 +234,7 @@ describe(IosSubmitCommand, () => {
ascAppId: '12345678',
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -288,6 +292,7 @@ describe(IosSubmitCommand, () => {
ascAppId: '12345678',
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down Expand Up @@ -350,6 +355,7 @@ describe(IosSubmitCommand, () => {
ascAppId: '12345678',
},
nonInteractive: false,
isVerboseFastlaneEnabled: false,
actor: mockJester,
graphqlClient,
analytics,
Expand Down

0 comments on commit a3f35a3

Please sign in to comment.