From af14650127de47058b958be411503584c0ba6323 Mon Sep 17 00:00:00 2001 From: Mikhailo Seledtsov Date: Thu, 21 Oct 2021 15:31:03 +0000 Subject: [PATCH] 8275569: Add linux-aarch64 to test-make profiles Reviewed-by: ihse --- make/conf/jib-profiles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/conf/jib-profiles.js b/make/conf/jib-profiles.js index af65ba7a756..5fc212aa452 100644 --- a/make/conf/jib-profiles.js +++ b/make/conf/jib-profiles.js @@ -559,7 +559,7 @@ var getJibProfilesProfiles = function (input, common, data) { "ANT_HOME": input.get("ant", "home_path") } }; - [ "linux-x64", "macosx-x64", "windows-x64"] + [ "linux-x64", "macosx-x64", "windows-x64", "linux-aarch64"] .forEach(function (name) { var maketestName = name + "-testmake"; profiles[maketestName] = concatObjects(profiles[name], testmakeBase);