summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/plugins/dependencies/src/main/java/moz.yaml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:35:49 +0000
commitd8bbc7858622b6d9c278469aab701ca0b609cddf (patch)
treeeff41dc61d9f714852212739e6b3738b82a2af87 /mobile/android/android-components/plugins/dependencies/src/main/java/moz.yaml
parentReleasing progress-linux version 125.0.3-1~progress7.99u1. (diff)
downloadfirefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz
firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mobile/android/android-components/plugins/dependencies/src/main/java/moz.yaml')
-rw-r--r--mobile/android/android-components/plugins/dependencies/src/main/java/moz.yaml74
1 files changed, 74 insertions, 0 deletions
diff --git a/mobile/android/android-components/plugins/dependencies/src/main/java/moz.yaml b/mobile/android/android-components/plugins/dependencies/src/main/java/moz.yaml
new file mode 100644
index 0000000000..c0d1433487
--- /dev/null
+++ b/mobile/android/android-components/plugins/dependencies/src/main/java/moz.yaml
@@ -0,0 +1,74 @@
+#
+# moz.yaml file to configure updatebot to perform version bumps for
+# nightly application-services builds; the version bump occurs in
+# ApplicationServices.kt.
+#
+# Note that application-services is not really vendored here: All the
+# normal vendoring steps are skipped and a custom action is used to
+# do the version bump. This allows us to drive version bumps in updatebot
+# and leverage updatebot's bug and patch creation.
+#
+
+# Version of this schema
+schema: 1
+
+bugzilla:
+ # Bugzilla product and component for this directory and subdirectories
+ product: Fenix
+ component: "General"
+
+# Document the source of externally hosted code
+origin:
+
+ # Short name of the package/library
+ name: android nightly application-services version bump
+
+ description: android nightly application-services version bump
+
+ # Full URL for the package's homepage/etc
+ # Usually different from repository url
+ url: https://github.com/mozilla/application-services
+
+ # Human-readable identifier for this version/release
+ # Generally "version NNN", "tag SSS", "bookmark SSS"
+ release: 2550d98ec22599dd1b1d45915ad5b119d1b7d64c (2024-04-10T05:03:14).
+
+ # Revision to pull in
+ # Must be a long or short commit SHA (long preferred)
+ revision: 2550d98ec22599dd1b1d45915ad5b119d1b7d64c
+
+ # The package's license, where possible using the mnemonic from
+ # https://spdx.org/licenses/
+ # Multiple licenses can be specified (as a YAML list)
+ # A "LICENSE" file must exist containing the full license text
+ license: MPL-2.0
+ license-file: LICENSE
+
+updatebot:
+ maintainer-phab: "#release-managers"
+ maintainer-bz: dmeehan@mozilla.com
+ tasks:
+ - type: vendoring
+ enabled: true
+ frequency: every
+ fuzzy-query: "'test-components | 'test-apk"
+
+vendoring:
+ url: https://github.com/mozilla/application-services
+ source-hosting: yaml-dir
+ source-host-path: appservices_version_bump.ASHost
+ tracking: tag
+
+ skip-vendoring-steps:
+ - fetch
+ - keep
+ - include
+ - exclude
+ - move-contents
+ - update-moz-build
+
+ update-actions:
+ - action: run-script
+ script: '{yaml_dir}/appservices_version_bump.py'
+ cwd: '.'
+ args: ['{revision}']