From 8a9e383dba58ed047ca46007b5af186aade05b59 Mon Sep 17 00:00:00 2001 From: Erik Joelsson Date: Wed, 8 Feb 2023 21:52:30 +0000 Subject: [PATCH] 8301717: Remove obsolete jib profiles Reviewed-by: dholmes, ihse --- make/conf/jib-profiles.js | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/make/conf/jib-profiles.js b/make/conf/jib-profiles.js index 2b21b7fbdfa..350222bf756 100644 --- a/make/conf/jib-profiles.js +++ b/make/conf/jib-profiles.js @@ -813,24 +813,6 @@ var getJibProfilesProfiles = function (input, common, data) { } }); - // Define the reference implementation profiles. These are basically the same - // as the open profiles, but upload artifacts to a different location. - common.main_profile_names.forEach(function (name) { - var riName = name + "-ri"; - var riDebugName = riName + common.debug_suffix; - var openName = name + common.open_suffix; - var openDebugName = openName + common.debug_suffix; - profiles[riName] = clone(profiles[openName]); - profiles[riDebugName] = clone(profiles[openDebugName]); - // Rewrite all remote dirs to "bundles/openjdk/BCL/..." - for (artifactName in profiles[riName].artifacts) { - var artifact = profiles[riName].artifacts[artifactName]; - artifact.remote = replaceAll( - "\/GPL\/", "/BCL/", - (artifact.remote != null ? artifact.remote : artifact.local)); - } - }); - // For open profiles, the non-debug jdk bundles, need an "open" prefix on the // remote bundle names, forming the word "openjdk". See JDK-8188789. common.main_profile_names.forEach(function (name) {