Skip to content

Commit

Permalink
Merge pull request #43078 from Expensify/revert-43046-andrew-hybrid-d…
Browse files Browse the repository at this point in the history
…eploy-2

Revert "Add HybridApp deploy to platform deploy"

(cherry picked from commit 6869040)
  • Loading branch information
roryabraham authored and OSBotify committed Jun 4, 2024
1 parent 92ae9c0 commit edfae63
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 40 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/platformDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,13 +352,6 @@ jobs:
env:
CF_API_KEY: ${{ secrets.CLOUDFLARE_TOKEN }}

# Build a version of iOS and Android HybridApp if we are deploying to staging
hybridApp:
name: Deploy HybridApp
needs: validateActor
if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) && github.event_name == 'push' }}
uses: Expensify/Mobile-Deploy/.github/workflows/deploy.yml@main

postSlackMessageOnFailure:
name: Post a Slack message when any platform fails to build or deploy
runs-on: ubuntu-latest
Expand Down
13 changes: 0 additions & 13 deletions workflow_tests/assertions/platformDeployAssertions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,6 @@ function assertDeployChecklistJobExecuted(workflowResult: Step[], didExecute = t
});
}

function assertHybridAppJobExecuted(workflowResult: Step[], didExecute = true) {
const steps = [createStepAssertion('hybridApp', true, null, 'HYBRID_APP', 'Deploy HybridApp')] as const;

steps.forEach((expectedStep) => {
if (didExecute) {
expect(workflowResult).toEqual(expect.arrayContaining([expectedStep]));
} else {
expect(workflowResult).not.toEqual(expect.arrayContaining([expectedStep]));
}
});
}

function assertAndroidJobExecuted(workflowResult: Step[], didExecute = true, isProduction = true, isSuccessful = true) {
const steps = [
createStepAssertion('Checkout', true, null, 'ANDROID', 'Checking out'),
Expand Down Expand Up @@ -391,7 +379,6 @@ function assertPostGithubCommentJobExecuted(workflowResult: Step[], didExecute =
export default {
assertVerifyActorJobExecuted,
assertDeployChecklistJobExecuted,
assertHybridAppJobExecuted,
assertAndroidJobExecuted,
assertDesktopJobExecuted,
assertIOSJobExecuted,
Expand Down
5 changes: 0 additions & 5 deletions workflow_tests/mocks/platformDeployMocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,6 @@ const PLATFORM_DEPLOY__WEB__STEP_MOCKS = [
PLATFORM_DEPLOY__WEB__PURGE_STAGING_CACHE__STEP_MOCK,
];

// deploy hybridApp
const PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCK = createMockStep('hybridApp', 'Deploy HybridApp', 'HYBRID_APP');
const PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS = [PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCK];

// post slack message on failure
const PLATFORM_DEPLOY__POST_SLACK_FAIL__POST_SLACK__STEP_MOCK = createMockStep('Post Slack message on failure', 'Posting Slack message on platform deploy failure', 'POST_SLACK_FAIL', [
'SLACK_WEBHOOK',
Expand Down Expand Up @@ -278,7 +274,6 @@ export default {
PLATFORM_DEPLOY__DESKTOP__STEP_MOCKS,
PLATFORM_DEPLOY__IOS__STEP_MOCKS,
PLATFORM_DEPLOY__WEB__STEP_MOCKS,
PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS,
PLATFORM_DEPLOY__POST_SLACK_FAIL__STEP_MOCKS,
PLATFORM_DEPLOY__POST_SLACK_SUCCESS__STEP_MOCKS,
PLATFORM_DEPLOY__POST_GITHUB_COMMENT__STEP_MOCKS,
Expand Down
15 changes: 0 additions & 15 deletions workflow_tests/platformDeploy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,6 @@ describe('test workflow platformDeploy', () => {
steps: mocks.PLATFORM_DEPLOY__DEPLOY_CHECKLIST__STEP_MOCKS,
runsOn: 'ubuntu-latest',
},
hybridApp: {
steps: mocks.PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS,
runsOn: 'ubuntu-latest',
},
};
const result = await act.runEvent('push', {
workflowFile: path.join(repoPath, '.github', 'workflows', 'platformDeploy.yml'),
Expand All @@ -125,7 +121,6 @@ describe('test workflow platformDeploy', () => {

assertions.assertVerifyActorJobExecuted(result);
assertions.assertDeployChecklistJobExecuted(result, true);
assertions.assertHybridAppJobExecuted(result, true);
assertions.assertAndroidJobExecuted(result, true, false, true);
assertions.assertDesktopJobExecuted(result, true, false);
assertions.assertIOSJobExecuted(result, true, false, true);
Expand Down Expand Up @@ -199,10 +194,6 @@ describe('test workflow platformDeploy', () => {
steps: mocks.PLATFORM_DEPLOY__DEPLOY_CHECKLIST__STEP_MOCKS,
runsOn: 'ubuntu-latest',
},
hybridApp: {
steps: mocks.PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS,
runsOn: 'ubuntu-latest',
},
};
const result = await act.runEvent('push', {
workflowFile: path.join(repoPath, '.github', 'workflows', 'platformDeploy.yml'),
Expand All @@ -214,7 +205,6 @@ describe('test workflow platformDeploy', () => {

assertions.assertVerifyActorJobExecuted(result);
assertions.assertDeployChecklistJobExecuted(result, true);
assertions.assertHybridAppJobExecuted(result, true);
assertions.assertAndroidJobExecuted(result, true, false, true);
assertions.assertDesktopJobExecuted(result, true, false);
assertions.assertIOSJobExecuted(result, true, false, true);
Expand Down Expand Up @@ -288,10 +278,6 @@ describe('test workflow platformDeploy', () => {
steps: mocks.PLATFORM_DEPLOY__DEPLOY_CHECKLIST__STEP_MOCKS,
runsOn: 'ubuntu-latest',
},
hybridApp: {
steps: mocks.PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS,
runsOn: 'ubuntu-latest',
},
};
const result = await act.runEvent('push', {
workflowFile: path.join(repoPath, '.github', 'workflows', 'platformDeploy.yml'),
Expand All @@ -303,7 +289,6 @@ describe('test workflow platformDeploy', () => {

assertions.assertVerifyActorJobExecuted(result);
assertions.assertDeployChecklistJobExecuted(result, true);
assertions.assertHybridAppJobExecuted(result, false);
assertions.assertAndroidJobExecuted(result, false);
assertions.assertDesktopJobExecuted(result, false);
assertions.assertIOSJobExecuted(result, false);
Expand Down

0 comments on commit edfae63

Please sign in to comment.