tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

moz.yaml (2177B)


      1 #
      2 # moz.yaml file to configure updatebot to perform version bumps for
      3 # nightly application-services builds; the version bump occurs in
      4 # ApplicationServices.kt.
      5 #
      6 # Note that application-services is not really vendored here: All the
      7 # normal vendoring steps are skipped and a custom action is used to
      8 # do the version bump. This allows us to drive version bumps in updatebot
      9 # and leverage updatebot's bug and patch creation.
     10 #
     11 
     12 # Version of this schema
     13 schema: 1
     14 
     15 bugzilla:
     16  # Bugzilla product and component for this directory and subdirectories
     17  product: "Firefox for Android"
     18  component: "General"
     19 
     20 # Document the source of externally hosted code
     21 origin:
     22 
     23  # Short name of the package/library
     24  name: android nightly application-services version bump
     25 
     26  description: android nightly application-services version bump
     27 
     28  # Full URL for the package's homepage/etc
     29  # Usually different from repository url
     30  url: https://github.com/mozilla/application-services
     31 
     32  # Human-readable identifier for this version/release
     33  # Generally "version NNN", "tag SSS", "bookmark SSS"
     34  release: 32693fef638471a3667869ba0c0b7a8bb52c15e3 (2026-01-10T05:02:46).
     35 
     36  # Revision to pull in
     37  # Must be a long or short commit SHA (long preferred)
     38  revision: 32693fef638471a3667869ba0c0b7a8bb52c15e3
     39 
     40  # The package's license, where possible using the mnemonic from
     41  # https://spdx.org/licenses/
     42  # Multiple licenses can be specified (as a YAML list)
     43  # A "LICENSE" file must exist containing the full license text
     44  license: MPL-2.0
     45  license-file: LICENSE
     46 
     47 updatebot:
     48    maintainer-phab: "#release-managers"
     49    maintainer-bz: dmeehan@mozilla.com
     50    tasks:
     51      - type: vendoring
     52        enabled: true
     53        frequency: every
     54    try-preset: firefox-android
     55 
     56 vendoring:
     57  url: https://github.com/mozilla/application-services
     58  source-hosting: yaml-dir
     59  source-host-path: appservices_version_bump.ASHost
     60  tracking: tag
     61 
     62  skip-vendoring-steps:
     63    - fetch
     64    - keep
     65    - include
     66    - exclude
     67    - move-contents
     68    - update-moz-build
     69 
     70  update-actions:
     71    - action: run-script
     72      script: '{yaml_dir}/appservices_version_bump.py'
     73      cwd: '.'
     74      args: ['{revision}']