tor-browser

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

source_files.yml (2033B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 ---
      5 s3_bucket_paths:
      6    by-platform:
      7        devedition-source:
      8            - pub/devedition/candidates
      9        firefox-source:
     10            - pub/firefox/candidates
     11 default_locales:  # if given an empty locale, use these locales
     12    - en-US
     13 tasktype_map:  # Map task reference to task type.
     14    release-source-signing: signing
     15 
     16 # A default entry, which the mappings below extend and override.
     17 # Final 'destinations' will be the product of:
     18 # s3_bucket_paths + destinations + locale_prefix + pretty_name
     19 default: &default
     20    from:
     21        - release-source-signing
     22    all_locales: false
     23    description: "TO_BE_OVERRIDDEN"
     24    locale_prefix: ''
     25    source_path_modifier: ''
     26    destinations:  # locale_prefix is appended
     27        - ${version}-candidates/build${build_number}/source
     28 
     29 # Configuration for individual files. Extends 'default', above.
     30 mapping:
     31    source.tar.xz:
     32        <<: *default
     33        description: "Source file with the in-tree code archived"
     34        pretty_name:
     35            by-platform:
     36                firefox-source: firefox-${version}.source.tar.xz
     37                devedition-source: firefox-${version}.source.tar.xz
     38        checksums_path:
     39            by-platform:
     40                firefox-source: source/firefox-${version}.source.tar.xz
     41                devedition-source: source/firefox-${version}.source.tar.xz
     42    source.tar.xz.asc:
     43        <<: *default
     44        description: "Detached signature for the source file"
     45        pretty_name:
     46            by-platform:
     47                firefox-source: firefox-${version}.source.tar.xz.asc
     48                devedition-source: firefox-${version}.source.tar.xz.asc
     49        checksums_path:
     50            by-platform:
     51                firefox-source: source/firefox-${version}.source.tar.xz.asc
     52                devedition-source: source/firefox-${version}.source.tar.xz.asc