Skip to content

Commit

Permalink
Bug 1786780 - Add firefox-android monorepo (#1188)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLorenzo committed Oct 31, 2022
1 parent 42153a8 commit 66c595e
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
11 changes: 10 additions & 1 deletion api/src/shipit_api/common/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,16 @@
],
}

SUPPORTED_MOBILE_REPO_NAMES = ("fenix", "android-components", "staging-fenix", "staging-android-components", "focus-android", "staging-focus-android")
SUPPORTED_MOBILE_REPO_NAMES = (
"android-components", # TODO bug 1797700, remove android-components
"fenix",
"firefox-android",
"focus-android",
"staging-android-components",
"staging-fenix",
"staging-firefox-android",
"staging-focus-android",
)

XPI_LAX_SIGN_OFF = config("XPI_LAX_SIGN_OFF", default=False, cast=bool)
SIGNOFFS = {
Expand Down
9 changes: 8 additions & 1 deletion frontend/src/configs/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,18 @@ module.exports = {
],
repositories: [
{
prettyName: 'Staging fork',
// TODO bug 1797700, remove the staging-android-components repo
prettyName: 'Deprecated fork',
project: 'staging-android-components',
repo: 'https://github.com/mozilla-releng/staging-android-components',
enableReleaseEta: false,
},
{
prettyName: 'Staging Android monorepo',
project: 'staging-firefox-android',
repo: 'https://github.com/mozilla-releng/staging-firefox-android',
enableReleaseEta: false,
},
],
enablePartials: false,
},
Expand Down
9 changes: 8 additions & 1 deletion frontend/src/configs/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,18 @@ module.exports = {
],
repositories: [
{
prettyName: 'Staging fork',
// TODO bug 1797700, remove the staging-android-components repo
prettyName: 'Deprecated fork',
project: 'staging-android-components',
repo: 'https://github.com/mozilla-releng/staging-android-components',
enableReleaseEta: false,
},
{
prettyName: 'Staging Android monorepo',
project: 'staging-firefox-android',
repo: 'https://github.com/mozilla-releng/staging-firefox-android',
enableReleaseEta: false,
},
],
enablePartials: false,
},
Expand Down
9 changes: 8 additions & 1 deletion frontend/src/configs/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,18 @@ module.exports = {
],
repositories: [
{
prettyName: 'Official repo',
// TODO bug 1797700, remove the android-components repo
prettyName: 'Deprecated repo',
project: 'android-components',
repo: 'https://github.com/mozilla-mobile/android-components',
enableReleaseEta: false,
},
{
prettyName: 'Android monorepo',
project: 'firefox-android',
repo: 'https://github.com/mozilla-mobile/firefox-android',
enableReleaseEta: false,
},
],
enablePartials: false,
},
Expand Down

0 comments on commit 66c595e

Please sign in to comment.