-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Changes from all commits
7ced3ba
56935f1
be20c2b
5304f3e
a147cc4
27f49c2
ba69584
931d756
7824192
93f741e
b96c412
de7434f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,10 +71,14 @@ pipelines: | |
stages: | ||
- create_build_qa_android: {} | ||
- app_upgrade_test_stage: {} | ||
multichain_e2e_pipeline: | ||
multichain_permissions_e2e_pipeline: | ||
stages: | ||
- build_multichain_e2e_ios_android_stage: {} | ||
- run_multichain_e2e_ios_android_stage: {} | ||
- build_multichain_permissions_e2e_ios_android_stage: {} | ||
- run_multichain_permissions_e2e_ios_android_stage: {} | ||
multichain_assets_e2e_pipeline: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added the new mulithchain assets e2e pipeline |
||
stages: | ||
- build_multichain_assets_e2e_ios_android_stage: {} | ||
- run_multichain_assets_e2e_ios_android_stage: {} | ||
# Pipeline for Flask | ||
create_flask_release_builds_pipeline: | ||
stages: | ||
|
@@ -140,15 +144,24 @@ stages: | |
workflows: | ||
- ios_e2e_build: {} | ||
- android_e2e_build: {} | ||
build_multichain_e2e_ios_android_stage: | ||
build_multichain_permissions_e2e_ios_android_stage: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. renamed the stages to be more specific by including |
||
abort_on_fail: true | ||
workflows: | ||
- build_ios_multichain_permissions_e2e: {} | ||
- build_android_multichain_permissions_e2e: {} | ||
run_multichain_permissions_e2e_ios_android_stage: | ||
workflows: | ||
- run_tag_multichain_permissions_ios: {} | ||
- run_tag_multichain_permissions_android: {} | ||
build_multichain_assets_e2e_ios_android_stage: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added the new mulithchain assets e2e build stage |
||
abort_on_fail: true | ||
workflows: | ||
- build_ios_multichain_e2e: {} | ||
- build_android_multichain_e2e: {} | ||
run_multichain_e2e_ios_android_stage: | ||
- build_ios_multichain_assets_e2e: {} | ||
- build_android_multichain_assets_e2e: {} | ||
run_multichain_assets_e2e_ios_android_stage: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added the new mulithchain assets e2e run stage |
||
workflows: | ||
- run_tag_multichain_ios: {} | ||
- run_tag_multichain_android: {} | ||
- run_tag_multichain_assets_ios: {} | ||
- run_tag_multichain_assets_android: {} | ||
run_smoke_e2e_ios_android_stage: | ||
workflows: | ||
- run_ios_api_specs: {} | ||
|
@@ -164,8 +177,10 @@ stages: | |
# - run_tag_smoke_swaps_android: {} | ||
- run_tag_smoke_core_ios: {} | ||
- run_tag_smoke_core_android: {} | ||
- run_tag_multichain_ios: {} | ||
- run_tag_multichain_android: {} | ||
- run_tag_multichain_permissions_ios: {} | ||
- run_tag_multichain_permissions_android: {} | ||
- run_tag_multichain_assets_ios: {} | ||
- run_tag_multichain_assets_android: {} | ||
build_regression_e2e_ios_android_stage: | ||
workflows: | ||
- ios_build_regression_tests: {} | ||
|
@@ -539,11 +554,21 @@ workflows: | |
- TEST_TYPE: 'upgrade' | ||
after_run: | ||
- wdio_android_e2e_test | ||
build_ios_multichain_e2e: | ||
build_ios_multichain_permissions_e2e: | ||
after_run: | ||
- ios_e2e_build | ||
# - android_e2e_build | ||
build_android_multichain_e2e: | ||
build_android_multichain_permissions_e2e: | ||
meta: | ||
bitrise.io: | ||
stack: linux-docker-android-22.04 | ||
machine_type_id: elite-xl | ||
after_run: | ||
- android_e2e_build | ||
build_ios_multichain_assets_e2e: | ||
after_run: | ||
- ios_e2e_build | ||
build_android_multichain_assets_e2e: | ||
meta: | ||
bitrise.io: | ||
stack: linux-docker-android-22.04 | ||
|
@@ -683,20 +708,36 @@ workflows: | |
- TEST_SUITE_TAG: '.*SmokeCore.*' | ||
after_run: | ||
- android_e2e_test | ||
run_tag_multichain_ios: | ||
run_tag_multichain_permissions_ios: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. renamed the multichain workflows to include |
||
envs: | ||
- TEST_SUITE_FOLDER: './e2e/specs/multichain/*' | ||
- TEST_SUITE_TAG: '.*SmokeMultiChainPermissions.*' | ||
after_run: | ||
- ios_e2e_test | ||
run_tag_multichain_permissions_android: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added the new mulithchain assets e2e workflows |
||
meta: | ||
bitrise.io: | ||
stack: linux-docker-android-22.04 | ||
machine_type_id: elite-xl | ||
envs: | ||
- TEST_SUITE_FOLDER: './e2e/specs/multichain/*' | ||
- TEST_SUITE_TAG: '.*SmokeMultiChainPermissions.*' | ||
after_run: | ||
- android_e2e_test | ||
run_tag_multichain_assets_ios: | ||
envs: | ||
- TEST_SUITE_FOLDER: './e2e/specs/multichain/*' | ||
- TEST_SUITE_TAG: '.*SmokeMultiChain.*' | ||
- TEST_SUITE_TAG: '.*SmokeMultiChainAssets.*' | ||
after_run: | ||
- ios_e2e_test | ||
run_tag_multichain_android: | ||
run_tag_multichain_assets_android: | ||
meta: | ||
bitrise.io: | ||
stack: linux-docker-android-22.04 | ||
machine_type_id: elite-xl | ||
envs: | ||
- TEST_SUITE_FOLDER: './e2e/specs/multichain/*' | ||
- TEST_SUITE_TAG: '.*SmokeMultiChain.*' | ||
- TEST_SUITE_TAG: '.*SmokeMultiChainAssets.*' | ||
after_run: | ||
- android_e2e_test | ||
android_e2e_build: | ||
|
@@ -1831,4 +1872,4 @@ trigger_map: | |
- tag: 'v*.*.*-RC-*' | ||
pipeline: release_e2e_pipeline | ||
- push_branch: detox/address-regression-tests-slowdown | ||
pipeline: multichain_e2e_pipeline | ||
pipeline: multichain_permissions_e2e_pipeline |
There was a problem hiding this comment.
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