tor-browser

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

bouncer_firefox_release.py (4342B)


      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 # lint_ignore=E501
      6 config = {
      7    "products": {
      8        # for installers, stubs, msi (ie not updates) ...
      9        # products containing "latest" are for www.mozilla.org via cron-bouncer-check
     10        # products using versions are for release automation via release-bouncer-check-firefox
     11        "installer": {
     12            "product-name": "Firefox-%(version)s",
     13            "platforms": [
     14                "linux64",
     15                "linux64-aarch64",
     16                "osx",
     17                "win",
     18                "win64",
     19                "win64-aarch64",
     20            ],
     21        },
     22        "installer-latest": {
     23            "product-name": "Firefox-latest",
     24            "platforms": [
     25                "linux64",
     26                "linux64-aarch64",
     27                "osx",
     28                "win",
     29                "win64",
     30                "win64-aarch64",
     31            ],
     32        },
     33        "installer-ssl": {
     34            "product-name": "Firefox-%(version)s-SSL",
     35            "platforms": [
     36                "linux64",
     37                "linux64-aarch64",
     38                "osx",
     39                "win",
     40                "win64",
     41                "win64-aarch64",
     42            ],
     43        },
     44        "installer-latest-ssl": {
     45            "product-name": "Firefox-latest-SSL",
     46            "platforms": [
     47                "linux64",
     48                "linux64-aarch64",
     49                "osx",
     50                "win",
     51                "win64",
     52                "win64-aarch64",
     53            ],
     54        },
     55        "msi": {
     56            "product-name": "Firefox-%(version)s-msi-SSL",
     57            "platforms": [
     58                "win",
     59                "win64",
     60            ],
     61        },
     62        "msi-latest": {
     63            "product-name": "Firefox-msi-latest-SSL",
     64            "platforms": [
     65                "win",
     66                "win64",
     67            ],
     68        },
     69        "msix": {
     70            "product-name": "Firefox-%(version)s-msix-SSL",
     71            "platforms": [
     72                "win",
     73                "win64",
     74                "win64-aarch64",
     75            ],
     76        },
     77        "msix-latest": {
     78            "product-name": "Firefox-msix-latest-SSL",
     79            "platforms": [
     80                "win",
     81                "win64",
     82                "win64-aarch64",
     83            ],
     84        },
     85        "langpack": {
     86            "product-name": "Firefox-%(version)s-langpack-SSL",
     87            "platforms": [
     88                "linux64",
     89                "linux64-aarch64",
     90                "osx",
     91                "win",
     92                "win64",
     93            ],
     94        },
     95        "langpack-latest": {
     96            "product-name": "Firefox-langpack-latest-SSL",
     97            "platforms": [
     98                "linux64",
     99                "linux64-aarch64",
    100                "osx",
    101                "win",
    102                "win64",
    103            ],
    104        },
    105        "stub-installer": {
    106            "product-name": "Firefox-%(version)s-stub",
    107            "platforms": [
    108                "win",
    109                "win64",
    110                "win64-aarch64",
    111            ],
    112        },
    113        "stub-installer-latest": {
    114            "product-name": "Firefox-stub",
    115            "platforms": [
    116                "win",
    117                "win64",
    118                "win64-aarch64",
    119            ],
    120        },
    121        "pkg": {
    122            "product-name": "Firefox-%(version)s-pkg-SSL",
    123            "platforms": ["osx"],
    124        },
    125        "pkg-latest": {
    126            "product-name": "Firefox-pkg-latest-SSL",
    127            "platforms": ["osx"],
    128        },
    129        "complete-mar": {
    130            "product-name": "Firefox-%(version)s-Complete",
    131            "platforms": [
    132                "linux64",
    133                "linux64-aarch64",
    134                "osx",
    135                "win",
    136                "win64",
    137                "win64-aarch64",
    138            ],
    139        },
    140    },
    141    "partials": {
    142        "releases-dir": {
    143            "product-name": "Firefox-%(version)s-Partial-%(prev_version)s",
    144            "platforms": [
    145                "linux64",
    146                "linux64-aarch64",
    147                "osx",
    148                "win",
    149                "win64",
    150                "win64-aarch64",
    151            ],
    152        },
    153    },
    154 }