summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/artifact_builds.py
blob: a4d2a0bdd289562585eec949608667ec04240971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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/.

# The values correspond to entries at
# https://tools.taskcluster.net/index/artifacts/#gecko.v2.mozilla-central.latest/gecko.v2.mozilla-central.latest
JOB_CHOICES = {
    "android-arm-opt",
    "android-arm-debug",
    "android-x86-opt",
    "android-x86_64-opt",
    "android-x86_64-debug",
    "android-aarch64-opt",
    "android-aarch64-debug",
    "linux-opt",
    "linux-debug",
    "linux64-opt",
    "linux64-debug",
    "macosx64-opt",
    "macosx64-debug",
    "win32-opt",
    "win32-debug",
    "win64-opt",
    "win64-debug",
    "win64-aarch64-opt",
    "win64-aarch64-debug",
}