Commit Graph

100 Commits (3e14d2215b7e83adf36d543021e279370882d2e8)

Author SHA1 Message Date
Johan Lorenzo 556a8708b8 [fenix] Let push-apk not be blocked by the startup tests anymore 5 years ago
Johan Lorenzo d434bc04ba [fenix] Bug 1600104 - Change FennecNightly signing format to have sha1 digest 5 years ago
Richard Pappalardo fec1720185 [fenix] fix: enable nightly startup-test on push-apk (https://github.com/mozilla-mobile/fenix/pull/6936) 5 years ago
Johan Lorenzo 5c49919353 [fenix] Use multi_dep instead of single_dep (https://github.com/mozilla-mobile/fenix/pull/6923) 5 years ago
Gabriel 9ed4f7f119 [fenix] For https://github.com/mozilla-mobile/fenix/issues/5574 - Migrate SessionControl to LibState (https://github.com/mozilla-mobile/fenix/pull/6651)
* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 1: Port TabAction.SaveTabGroup to TabSessionInteractor and SessionControlController. (https://github.com/mozilla-mobile/fenix/pull/6651)

- Introduces the TabSessionInteractor, SessionControlInteractor and SessionControlController classes.
- Removes the TabAction.SaveTabGroup.

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 2: Port TabAction.PrivateBrowsingLearnMore to TabSessionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 3: Port TabAction.ShareTabs to TabSessionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 4: Remove unused TabAction.Share and TabItemMenu (https://github.com/mozilla-mobile/fenix/pull/6651)

In https://github.com/mozilla-mobile/fenix/issues/2205, the tab overflow button was removed which would have shown the
TabItemMenu when clicked. So, we can remove TabItemMenu since it is not
used and as a result, we can also remove TabAction.Share since there are
no consumers.

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 5: Port TabAction.PlayMedia and TabAction.PauseMedia to TabSessionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 6: Port TabAction.Select to TabSessionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 7: Port Onboarding.Finish to OnboardingInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 8: Port TabAction.Close and TabAction.CloseAll to TabSessionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

- Removes TabAction

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 9: Port CollectionAction.Delete to CollectionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 10: Port CollectionAction.ShareTabs to CollectionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 11: Port CollectionAction.AddTab and CollectionAction.Rename to CollectionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 12: Port CollectionAction.RemoveTab to CollectionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 13: Port CollectionAction.OpenTab to CollectionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 14: Port CollectionAction.CloseTabs to CollectionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 15: Introduce a HomeFragmentStore (https://github.com/mozilla-mobile/fenix/pull/6651)

- We will hook up the HomeFragmentStore in later parts.
- Removes List<Tab>.toSessionBundle(context: Context) since it is unused.

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 16: Port CollectionAction.Collapse and CollectionAction.Expand to CollectionInteractor and SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

- We assume the store is hooked up to the SessionControlController in this part,
but this work will be done in a later part.
- Removes CollectionAction.

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 20: Remove the architecture module. (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 17:  Remove duplicate subscribeToTabCollections in BrowserFragment.kt (https://github.com/mozilla-mobile/fenix/pull/6651)

There is a duplicate call of subscribeToTabCollections() in both HomeFragment and BrowserFragment.
In this patch, we remove the call in BrowserFragment to avoid passing the HomeFragmentStore to
BrowserFragment in order to dispatch the CollectionsChange event.

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 18: Delete SessionControlComponent and fix TabCollection and Tab imports (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 19: Use the new HomeFragmentStore in the HomeFragment (https://github.com/mozilla-mobile/fenix/pull/6651)

- Renames SessionControlUIView to SessionControlView

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 21: Fix white screen on home fragment (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 22: Fix formatting in SessionControlInteractor and replace See with @see in SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 23: Move to metrics.track call to the beginning of handleCollectionRemoveTab (https://github.com/mozilla-mobile/fenix/pull/6651)

This ensures that the metrics.track will be called immediately before the tab is removed from the collection.

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 24: Use the sessionManager getter in SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 25: Use mapNotNull in List<Tab>.toSessionBundle (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 26: Simplify closeTab and closeAllTabs functions by assigning a deletionJob constant (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 27: Replace listOf() with emptyList() in removeAllTabsWithUndo (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 28: Replace the Context parameter with the HomeActivity in SessionControlController (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Part 29: Add test for HomeFragmentStore, DefaultSessionControlController and SessionControlInteractor (https://github.com/mozilla-mobile/fenix/pull/6651)

* For https://github.com/mozilla-mobile/fenix/issues/5574 - Removes running CI against the architecture debug build varient
5 years ago
Johan Lorenzo f640ecccec [fenix] Bug 1600104 - Enable Fennec{Nightly,Beta} builds on CI 5 years ago
Richard Pappalardo a6231458fc [fenix] Add Nightly startup-test (https://github.com/mozilla-mobile/fenix/pull/6569) 5 years ago
mawen7 bbfa8aadd4 [fenix] Run lint for app module and set baseline 5 years ago
kglazko 02638e2cc2 [fenix] Nimbledroid Fenix add beta and release jobs (https://github.com/mozilla-mobile/fenix/pull/6828) 5 years ago
Johan Lorenzo cf0b39a94e [fenix] Split android-test build job into 2 so it can be signed with 2 different keys (https://github.com/mozilla-mobile/fenix/pull/6779) 5 years ago
Johan Lorenzo 702121bdcf [fenix] Make nimbledroid compliant to UI tests 5 years ago
Johan Lorenzo 8eef026200 [fenix] Split UI test 5 years ago
Mitchell Hentges e60178b0cf [fenix] Exposes test report artifact for "test-debug" (https://github.com/mozilla-mobile/fenix/pull/6644) 5 years ago
Johan Lorenzo 3ee57f1a3f [fenix] Fix missing Firebase token in nightly and production builds 5 years ago
Mitchell Hentges 12182a40b2 [fenix] Uses scriptworker-k8s scriptworkers 5 years ago
Mitchell Hentges f0afbab51a [fenix] Switch to aws-provider worker types (https://github.com/mozilla-mobile/fenix/pull/6501) 5 years ago
MozLando ef0e2bdbe8 [fenix] Merge https://github.com/mozilla-mobile/fenix/pull/6115
6115: Clean up automation folder from what was used by the old decision task r=mitchhentges a=JohanLorenzo



Co-authored-by: Johan Lorenzo <jlorenzo@mozilla.com>
5 years ago
Mitchell Hentges 4a5a22bc17 [fenix] Enables the Fenix beta (https://github.com/mozilla-mobile/fenix/pull/5936) 5 years ago
Richard Pappalardo 1839ce12f1 [fenix] Add verify items tests for settings menus 5 years ago
Johan Lorenzo 23f92d4f26 [fenix] Clean up automation folder from what was used by the old decision task 5 years ago
Robert Wood 6d96330b53 [fenix] Fix https://github.com/mozilla-mobile/fenix/issues/6110 - Raptor fenix jobs are broken (test name not found) 5 years ago
Johan Lorenzo cfb88938fe [fenix] Expose PR number to ui-test 5 years ago
Mitchell Hentges 4bd3882edb [fenix] Removes legacy nightly automation 5 years ago
Johan Lorenzo 0317cf03d6 [fenix] Bug 1586039 - Fix quoted version names (https://github.com/mozilla-mobile/fenix/pull/5811)
It was fixed in [1], but I regressed it when I resolved conflicts in [2]

[1] f9863564ee\#diff-3a2aaafc93fc8bb53e2029001aa236aeL98
[2] 2b941e690b\#diff-3a2aaafc93fc8bb53e2029001aa236aeR95
5 years ago
Johan Lorenzo 9c994971ff [fenix] Fix complete-pr which does not depend on lint tasks 5 years ago
Johan Lorenzo dcf76277c2 [fenix] Bug 1580778 - Rename GIT_TAG into MOBILE_HEAD_TAG and export it as a param (https://github.com/mozilla-mobile/fenix/pull/5564) 5 years ago
Johan Lorenzo be026d15a3 [fenix] Bug 1580778 - Fix version names (https://github.com/mozilla-mobile/fenix/pull/5635)
* Bug 1580778 - Put back versionName to releases

* Bug 1580778 - Put quote escaping
5 years ago
Johan Lorenzo 41fbc8d9d0 [fenix] For bug 1571029 - Put raptor emails back (https://github.com/mozilla-mobile/fenix/pull/5560) 5 years ago
Johan Lorenzo e8573e3d2f [fenix] Bug 1580778 - Raptor: put ytp exceptions back 5 years ago
Johan Lorenzo 081d9ee296 [fenix] taskgraph: Speed up gradle calls 5 years ago
Mitchell Hentges 99984299f5 [fenix] Adds note to ping performance testing when routes change (https://github.com/mozilla-mobile/fenix/pull/5500) 5 years ago
Johan Lorenzo 809512f956 [fenix] Bug 1580778 - Fix duplicated scopes (https://github.com/mozilla-mobile/fenix/pull/5515) 5 years ago
Johan Lorenzo a9dad8ba08 [fenix] Bug 1580778 - Migrate build tasks to taskgraph and retire the old decision task (https://github.com/mozilla-mobile/fenix/pull/5488) 5 years ago
Johan Lorenzo edb646c693 [fenix] Bug 1580778 - Put lint jobs back on Treeherder (https://github.com/mozilla-mobile/fenix/pull/5483) 5 years ago
Johan Lorenzo e510715efb [fenix] Bug 1580778 - Migrate lint and ui-test tasks to taskgraph (https://github.com/mozilla-mobile/fenix/pull/5430) 5 years ago
Johan Lorenzo c10fe86267 [fenix] Bug 1580778 - Fix fennec signing worker (https://github.com/mozilla-mobile/fenix/pull/5431) 5 years ago
Mitchell Hentges 9a6b5cba8e [fenix] Publishes to a public track for the separate nightly app (https://github.com/mozilla-mobile/fenix/pull/4954) 5 years ago
Johan Lorenzo a43bb4644b [fenix] Bug 1580778 - Migrate nimbledroid task to taskgraph (https://github.com/mozilla-mobile/fenix/pull/5408) 5 years ago
Johan Lorenzo aebbf82874 [fenix] Bug 1580778 - Fix signing scopes and indexes (https://github.com/mozilla-mobile/fenix/pull/5426) 5 years ago
Johan Lorenzo 2c1a9bc20a [fenix] Bug 1580778 - Fix signing kind (https://github.com/mozilla-mobile/fenix/pull/5425) 5 years ago
Johan Lorenzo 3f5bb4f0c4 [fenix] Bug 1580778 - Migrate signing tasks to taskgraph (https://github.com/mozilla-mobile/fenix/pull/5409) 5 years ago
Johan Lorenzo b33f4bfde7 [fenix] Bug 1580778 - Migrate push-apk tasks to taskgraph (https://github.com/mozilla-mobile/fenix/pull/5377) 5 years ago
Johan Lorenzo 8b05dd0e0d [fenix] Bug 1580778 - Migrate raptor tests to taskgraph (https://github.com/mozilla-mobile/fenix/pull/5361) 5 years ago
Johan Lorenzo 521fd009c0 [fenix] Try to fix taskcluster-github broken PRs (https://github.com/mozilla-mobile/fenix/pull/5354) 5 years ago
Johan Lorenzo 225225776f [fenix] Let taskgraph load tasks for nightly cron 5 years ago
Johan Lorenzo da2204ac5d [fenix] Let taskgraph load tasks for raptor 5 years ago
Johan Lorenzo a2a7a64d5f [fenix] Let taskgraph load tasks for releases 5 years ago
Johan Lorenzo 347db4b0a3 [fenix] Let taskgraph load tasks for pushes 5 years ago
Johan Lorenzo f588f80204 [fenix] Let taskgraph load tasks from decision_tasks.py in PRs 5 years ago
Johan Lorenzo 0d208d09c7 [fenix] Taskgraph skeleton 5 years ago