summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/artifact_builds.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mozbuild/mozbuild/artifact_builds.py')
-rw-r--r--python/mozbuild/mozbuild/artifact_builds.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/python/mozbuild/mozbuild/artifact_builds.py b/python/mozbuild/mozbuild/artifact_builds.py
new file mode 100644
index 0000000000..a4d2a0bdd2
--- /dev/null
+++ b/python/mozbuild/mozbuild/artifact_builds.py
@@ -0,0 +1,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",
+}