Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Kevin Jacobs committed Jan 13, 2021
1 parent f9973aa commit e672b1b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions automation/taskcluster/graph/src/try_syntax.js
Expand Up @@ -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.
Expand Down Expand Up @@ -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",
Expand All @@ -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");
Expand Down

0 comments on commit e672b1b

Please sign in to comment.