From e672b1bb59cd63ddd2df574b97731a886165a6dc Mon Sep 17 00:00:00 2001 From: Kevin Jacobs Date: Wed, 13 Jan 2021 22:54:50 +0000 Subject: [PATCH] Bug 1686557 - Support aarch64-make target in nss-try. r=bbeurdouche Differential Revision: https://phabricator.services.mozilla.com/D101648 --HG-- extra : moz-landing-system : lando --- automation/taskcluster/graph/src/try_syntax.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/automation/taskcluster/graph/src/try_syntax.js b/automation/taskcluster/graph/src/try_syntax.js index ca0b84813e..0d2e84c59b 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");