# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. --- # This file contains exhaustive information about all the release artifacs that # are needed within a type of release. # # Structure # -------- # `s3_bucket_paths` -- prefix to be used per product to correctly access our S3 buckets # `default_locales` -- list of locales to be used when composing upstream artifacts or the list of # destinations. If given an empty locale, it uses these locales instead. # `tasktype_map` -- mapping between task reference and task type, particularly usefule when # composing the upstreamArtifacts for scriptworker. # `platform_names` -- various platform mappings used in reckoning artifacts or other paths # `default` -- a default entry, which the mappings extend and override in such a way that # final path full-destinations will be a concatenation of the following: # `s3_bucket_paths`, `destinations`, `locale_prefix`, `pretty_name` # `from` -- specifies the dependency(ies) from which to expect the particular artifact # `all_locales` -- boolean argument to specify whether that particular artifact is to be expected # for all locales or just the default one # `description` -- brief summary of what that artifact is # `locale_prefix` -- prefix to be used in the final destination paths, whether that's for default locale or not # `source_path_modifier` -- any parent dir that might be used in between artifact prefix and filename at source location # for example `public/build` vs `public/build/ach/`. # `destinations` -- final list of directories where to push the artifacts in S3 # `pretty_name` -- the final name the artifact will have at destination # `checksums_path` -- the name to identify one artifact within the checksums file # `not_for_platforms` -- filtering option to avoid associating an artifact with a specific platform # `only_for_platforms` -- filtering option to exclusively include the association of an artifact for a specific platform # `partials_only` -- filtering option to avoid associating an artifact unless this flag is present # `update_balrog_manifest`-- flag needed downstream in beetmover jobs to reckon the balrog manifest # `from_buildid` -- flag needed downstream in beetmover jobs to reckon the balrog manifest s3_bucket_paths: - pub/firefox/integration default_locales: - en-US tasktype_map: build: build signing: signing repackage: repackage platform_names: filename_platform: by-platform: linux64: 'linux64' linux64-aarch64-shippable: 'linux-aarch64' linux64-asan-reporter-shippable: 'linux-x86_64-asan-reporter' macosx64: 'mac' macosx64-shippable: 'mac-shippable' macosx64-aarch64-shippable: 'mac-aarch64' win32: 'win32' win32-shippable: 'win32-shippable' win64: 'win64' win64-shippable: 'win64-shippable' win64-aarch64: 'win64-aarch64' win64-aarch64-shippable: 'win64-aarch64' win64-asan-reporter-shippable: 'win64-asan-reporter' default: &default from: - build all_locales: false description: "TO_BE_OVERRIDDEN" locale_prefix: '' source_path_modifier: by-locale: default: '${locale}' en-US: '' destinations: - ${branch}/${year}/${month}/${day}/${head_rev} expiry: "2 years" mapping: target.json: <<: *default description: "Various compile and moz_app flags baked together in a json file" pretty_name: firefox-${version}.${locale}.${filename_platform}.json checksums_path: firefox-${version}.${locale}.${filename_platform}.json target.mozinfo.json: <<: *default description: "Various compile and moz_app flags baked together in a json file" pretty_name: firefox-${version}.${locale}.${filename_platform}.mozinfo.json checksums_path: firefox-${version}.${locale}.${filename_platform}.mozinfo.json target.txt: <<: *default description: "File containing buildid and revision" pretty_name: firefox-${version}.${locale}.${filename_platform}.txt checksums_path: firefox-${version}.${locale}.${filename_platform}.txt target_info.txt: <<: *default description: "File containing the buildID" pretty_name: firefox-${version}.${locale}.${filename_platform}_info.txt checksums_path: firefox-${version}.${locale}.${filename_platform}_info.txt target.jsshell.zip: <<: *default description: "Set of shells to allow test snippets of Javascript code without needing to reload the page" pretty_name: jsshell-${filename_platform}.zip checksums_path: jsshell-${filename_platform}.zip target.tar.xz: <<: *default description: "Main installer for Linux platforms" only_for_platforms: - linux64 - linux64-shippable - linux64-aarch64-shippable - linux64-asan-reporter-shippable pretty_name: firefox-${version}.${locale}.${filename_platform}.tar.xz checksums_path: firefox-${version}.${locale}.${filename_platform}.tar.xz target.dmg: <<: *default description: "Main package disk image for Mac OS X platforms" # Attribution-l10n jobs don't have locale in the artifact path source_path_modifier: "" only_for_platforms: - macosx64 - macosx64-shippable - macosx64-aarch64-shippable pretty_name: firefox-${version}.${locale}.${filename_platform}.dmg checksums_path: firefox-${version}.${locale}.${filename_platform}.dmg target.zip: <<: *default description: "Main package installer for Windows platforms" only_for_platforms: - win32 - win32-shippable - win64 - win64-shippable - win64-aarch64 - win64-aarch64-shippable - win64-asan-reporter-shippable pretty_name: firefox-${version}.${locale}.${filename_platform}.zip checksums_path: firefox-${version}.${locale}.${filename_platform}.zip target.installer.exe: <<: *default description: "Main installer for Windows platforms" only_for_platforms: - win32 - win32-shippable - win64 - win64-shippable - win64-aarch64 - win64-aarch64-shippable - win64-asan-reporter-shippable pretty_name: firefox-${version}.${locale}.${filename_platform}.installer.exe checksums_path: firefox-${version}.${locale}.${filename_platform}.installer.exe