firefox_candidates_checksums.yml (5034B)
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 # This file contains exhaustive information about all the release artifacs that 6 # are needed within a type of release. 7 # 8 # Structure 9 # -------- 10 # `s3_bucket_paths` -- prefix to be used per product to correctly access our S3 buckets 11 # `default_locales` -- list of locales to be used when composing upstream artifacts or the list of 12 # destinations. If given an empty locale, it uses these locales instead. 13 # `tasktype_map` -- mapping between task reference and task type, particularly usefule when 14 # composing the upstreamArtifacts for scriptworker. 15 # `platform_names` -- various platform mappings used in reckoning artifacts or other paths 16 # `default` -- a default entry, which the mappings extend and override in such a way that 17 # final path full-destinations will be a concatenation of the following: 18 # `s3_bucket_paths`, `destinations`, `locale_prefix`, `pretty_name` 19 # `from` -- specifies the dependency(ies) from which to expect the particular artifact 20 # `all_locales` -- boolean argument to specify whether that particular artifact is to be expected 21 # for all locales or just the default one 22 # `description` -- brief summary of what that artifact is 23 # `locale_prefix` -- prefix to be used in the final destination paths, whether that's for default locale or not 24 # `source_path_modifier` -- any parent dir that might be used in between artifact prefix and filename at source location 25 # for example `public/build` vs `public/build/ach/`. 26 # `destinations` -- final list of directories where to push the artifacts in S3 27 # `pretty_name` -- the final name the artifact will have at destination 28 # `checksums_path` -- the name to identify one artifact within the checksums file 29 # `expiry` -- setting for expiring this file (GCS custom_time). ie: 1 year 30 # `not_for_platforms` -- filtering option to avoid associating an artifact with a specific platform 31 # `only_for_platforms` -- filtering option to exclusively include the association of an artifact for a specific platform 32 # `partials_only` -- filtering option to avoid associating an artifact unless this flag is present 33 # `update_balrog_manifest`-- flag needed downstream in beetmover jobs to reckon the balrog manifest 34 # `from_buildid` -- flag needed downstream in beetmover jobs to reckon the balrog manifest 35 36 s3_bucket_paths: 37 by-platform: 38 .*devedition.*: 39 - pub/devedition/candidates 40 default: 41 - pub/firefox/candidates 42 default_locales: 43 - en-US 44 tasktype_map: 45 beetmover-repackage: beetmover 46 release-beetmover-signed-langpacks: signing 47 platform_names: 48 path_platform: 49 by-platform: 50 linux64-shippable: 'linux-x86_64' 51 linux64-devedition: 'linux-x86_64' 52 linux64-asan-reporter-shippable: 'linux-x86_64-asan-reporter' 53 linux64-aarch64-shippable: 'linux-aarch64' 54 linux64-aarch64-devedition: 'linux-aarch64' 55 macosx64-shippable: 'mac' 56 macosx64-devedition: 'mac' 57 win32-shippable: 'win32' 58 win32-devedition: 'win32' 59 win64-shippable: 'win64' 60 win64-devedition: 'win64' 61 win64-aarch64-shippable: 'win64-aarch64' 62 win64-aarch64-devedition: 'win64-aarch64' 63 win64-asan-reporter-shippable: 'win64-asan-reporter' 64 linux64: 'linux-x86_64' 65 linux64-aarch64: 'linux-aarch64' 66 macosx64: 'mac' 67 win32: 'win32' 68 win64: 'win64' 69 70 default: &default 71 from: 72 - beetmover-repackage 73 all_locales: true 74 description: "TO_BE_OVERRIDDEN" 75 locale_prefix: '${locale}/' 76 source_path_modifier: '' 77 destinations: 78 - ${version}-candidates/build${build_number}/beetmover-checksums/${path_platform} 79 expiry: "1 year" 80 81 mapping: 82 target.checksums: 83 <<: *default 84 description: "Checksums file containing size, hash, sha algorithm and filename" 85 pretty_name: firefox-${version}.checksums.beet 86 checksums_path: beetmover-checksums/${path_platform}/${locale}/firefox-${version}.checksums.beet 87 target-langpack.checksums: 88 <<: *default 89 description: "Checksums file containing size, hash, sha algorithm and filename for the langpack" 90 locale_prefix: '' 91 from: 92 - release-beetmover-signed-langpacks 93 pretty_name: ${locale}.checksums.beet 94 checksums_path: beetmover-checksums/${path_platform}/xpi/${locale}.checksums.beet 95 destinations: 96 - ${version}-candidates/build${build_number}/beetmover-checksums/${path_platform}/xpi