Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: rename multichain e2e pipeline and add multichain assets pipeline #12785

Conversation

EtherWizard33
Copy link
Contributor

@EtherWizard33 EtherWizard33 commented Dec 19, 2024

Description

This PR renames the multichain e2e pipeline to be more specific about permissions and adds a new pipeline for multichain assets testing.

Changes were made in a hierarchical order:

  1. Renamed existing pipeline for clarity:

    • multichain_e2e_pipelinemultichain_permissions_e2e_pipeline
    • Renamed stages to include "permissions":
      • build_multichain_e2e_ios_android_stagebuild_multichain_permissions_e2e_ios_android_stage
      • run_multichain_e2e_ios_android_stagerun_multichain_permissions_e2e_ios_android_stage
    • Renamed build workflows:
      • build_ios_multichain_e2ebuild_ios_multichain_permissions_e2e
      • build_android_multichain_e2ebuild_android_multichain_permissions_e2e
    • Renamed test workflows:
      • run_tag_multichain_iosrun_tag_multichain_permissions_ios
      • run_tag_multichain_androidrun_tag_multichain_permissions_android
  2. Added new pipeline for multichain assets:

    • Created multichain_assets_e2e_pipeline with corresponding stages and workflows
    • Added new test tag SmokeMultiChainAssets
    • Integrated assets test workflows into existing smoke test suite

These changes improve naming consistency throughout the CI pipeline while adding new functionality for multichain assets testing.

Related issues

Fixes:

Manual testing steps

  1. Go to this page...

Screenshots/Recordings

Before

After

Pre-merge author checklist

Pre-merge reviewer checklist

  • I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed).
  • I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.

@EtherWizard33 EtherWizard33 added Run Smoke E2E Triggers smoke e2e on Bitrise team-wallet-ux labels Dec 19, 2024
Copy link
Contributor

CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes.

Copy link
Contributor

github-actions bot commented Dec 19, 2024

https://bitrise.io/ Bitrise

❌❌❌ pr_smoke_e2e_pipeline failed on Bitrise! ❌❌❌

Commit hash: 5304f3e
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/b3e537fd-0c19-43cf-97dd-f8d098251c4e

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

Tip

  • Check the documentation if you have any doubts on how to understand the failure on bitrise

@@ -71,10 +71,10 @@ pipelines:
stages:
- create_build_qa_android: {}
- app_upgrade_test_stage: {}
multichain_e2e_pipeline:
multichain_permissions_e2e_pipeline:
Copy link
Contributor Author

@EtherWizard33 EtherWizard33 Dec 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

renamed the pipeline to be more specific by including permissions in its name

@@ -140,15 +140,15 @@ stages:
workflows:
- ios_e2e_build: {}
- android_e2e_build: {}
build_multichain_e2e_ios_android_stage:
build_multichain_permissions_e2e_ios_android_stage:
Copy link
Contributor Author

@EtherWizard33 EtherWizard33 Dec 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

renamed the stages to be more specific by including permissions in their names

@@ -683,13 +683,13 @@ workflows:
- TEST_SUITE_TAG: '.*SmokeCore.*'
after_run:
- android_e2e_test
run_tag_multichain_ios:
run_tag_multichain_permissions_ios:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

renamed the multichain workflows to include permissions in their name

@EtherWizard33 EtherWizard33 changed the title refactor: rename multichain e2e pipeline to multichain permissions refactor: rename multichain e2e pipeline to multichain permissions and create a new pipeline to contain existing multichain assets e2e tests Dec 19, 2024
@EtherWizard33 EtherWizard33 changed the title refactor: rename multichain e2e pipeline to multichain permissions and create a new pipeline to contain existing multichain assets e2e tests refactor: rename multichain e2e pipeline to multichain permissions and create a new e2e pipeline to contain existing multichain assets tests Dec 19, 2024
@EtherWizard33 EtherWizard33 changed the title refactor: rename multichain e2e pipeline to multichain permissions and create a new e2e pipeline to contain existing multichain assets tests refactor: rename multichain e2e pipeline to multichain permissions Dec 19, 2024
@EtherWizard33 EtherWizard33 changed the title refactor: rename multichain e2e pipeline to multichain permissions refactor: rename multichain e2e pipeline and add multichain assets pipeline Dec 19, 2024
- run_multichain_e2e_ios_android_stage: {}
- build_multichain_permissions_e2e_ios_android_stage: {}
- run_multichain_permissions_e2e_ios_android_stage: {}
multichain_assets_e2e_pipeline:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added the new mulithchain assets e2e pipeline

workflows:
- run_tag_multichain_permissions_ios: {}
- run_tag_multichain_permissions_android: {}
build_multichain_assets_e2e_ios_android_stage:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added the new mulithchain assets e2e build stage

run_multichain_e2e_ios_android_stage:
- build_ios_multichain_assets_e2e: {}
- build_android_multichain_assets_e2e: {}
run_multichain_assets_e2e_ios_android_stage:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added the new mulithchain assets e2e run stage

- TEST_SUITE_TAG: '.*SmokeMultiChainPermissions.*'
after_run:
- ios_e2e_test
run_tag_multichain_permissions_android:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added the new mulithchain assets e2e workflows

@EtherWizard33 EtherWizard33 marked this pull request as ready for review December 19, 2024 13:49
@EtherWizard33 EtherWizard33 requested review from a team as code owners December 19, 2024 13:49
@EtherWizard33 EtherWizard33 added Run Smoke E2E Triggers smoke e2e on Bitrise and removed Run Smoke E2E Triggers smoke e2e on Bitrise labels Dec 19, 2024
Copy link
Contributor

github-actions bot commented Dec 19, 2024

https://bitrise.io/ Bitrise

✅✅✅ pr_smoke_e2e_pipeline passed on Bitrise! ✅✅✅

Commit hash: de7434f
Build link: https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/ffad37c0-a490-4c3b-9a1c-5bd8d70fd5a6

Note

  • You can kick off another pr_smoke_e2e_pipeline on Bitrise by removing and re-applying the Run Smoke E2E label on the pull request

@EtherWizard33 EtherWizard33 mentioned this pull request Dec 19, 2024
7 tasks
@EtherWizard33
Copy link
Contributor Author

closing in favor of another PR which does not add the new workflow but does rename the existing multichain workflow to multichain permissions: #12809

@github-actions github-actions bot locked and limited conversation to collaborators Dec 20, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Run Smoke E2E Triggers smoke e2e on Bitrise team-wallet-ux
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant