summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Jacobs <kjacobs@mozilla.com>2021-01-13 22:54:50 +0000
committerKevin Jacobs <kjacobs@mozilla.com>2021-01-13 22:54:50 +0000
commitde1ede58a6f760a8cc4836252182a8fafc8d2c4b (patch)
treecbb923e58c6c056fa573fe0f87c3a8afde231aba
parentc29d062e8cd20bc50c4143f641e7b2d436123bbe (diff)
downloadnss-hg-NSS_3_61_BETA1.tar.gz
Bug 1686557 - Support aarch64-make target in nss-try. r=bbeurdoucheNSS_3_61_BETA1
Differential Revision: https://phabricator.services.mozilla.com/D101648
-rw-r--r--automation/taskcluster/graph/src/try_syntax.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/automation/taskcluster/graph/src/try_syntax.js b/automation/taskcluster/graph/src/try_syntax.js
index ca0b84813..0d2e84c59 100644
--- a/automation/taskcluster/graph/src/try_syntax.js
+++ b/automation/taskcluster/graph/src/try_syntax.js
@@ -31,7 +31,7 @@ function parseOptions(opts) {
let allPlatforms = ["linux", "linux64", "linux64-asan", "linux64-fips",
"win", "win64", "win-make", "win64-make",
"linux64-make", "linux-make", "linux-fuzz",
- "linux64-fuzz", "aarch64", "mac"];
+ "linux64-fuzz", "aarch64", "aarch64-make", "mac"];
let platforms = intersect(opts.platform.split(/\s*,\s*/), allPlatforms);
// If the given value is nonsense or "none" default to all platforms.
@@ -115,6 +115,7 @@ function filter(opts) {
// Filter by platform.
let found = opts.platforms.some(platform => {
let aliases = {
+ "aarch64-make": "aarch64",
"linux": "linux32",
"linux-fuzz": "linux32",
"linux64-asan": "linux64",
@@ -137,7 +138,8 @@ function filter(opts) {
} else if (platform == "linux64-fips") {
keep &= coll("fips");
} else if (platform == "linux64-make" || platform == "linux-make" ||
- platform == "win64-make" || platform == "win-make") {
+ platform == "win64-make" || platform == "win-make" ||
+ platform == "aarch64-make") {
keep &= coll("make");
} else if (platform == "linux64-fuzz" || platform == "linux-fuzz") {
keep &= coll("fuzz");