Skip to content

Commit 8a9e383

Browse files
committed
8301717: Remove obsolete jib profiles
Reviewed-by: dholmes, ihse
1 parent 631a279 commit 8a9e383

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

make/conf/jib-profiles.js

-18
Original file line numberDiff line numberDiff line change
@@ -813,24 +813,6 @@ var getJibProfilesProfiles = function (input, common, data) {
813813
}
814814
});
815815

816-
// Define the reference implementation profiles. These are basically the same
817-
// as the open profiles, but upload artifacts to a different location.
818-
common.main_profile_names.forEach(function (name) {
819-
var riName = name + "-ri";
820-
var riDebugName = riName + common.debug_suffix;
821-
var openName = name + common.open_suffix;
822-
var openDebugName = openName + common.debug_suffix;
823-
profiles[riName] = clone(profiles[openName]);
824-
profiles[riDebugName] = clone(profiles[openDebugName]);
825-
// Rewrite all remote dirs to "bundles/openjdk/BCL/..."
826-
for (artifactName in profiles[riName].artifacts) {
827-
var artifact = profiles[riName].artifacts[artifactName];
828-
artifact.remote = replaceAll(
829-
"\/GPL\/", "/BCL/",
830-
(artifact.remote != null ? artifact.remote : artifact.local));
831-
}
832-
});
833-
834816
// For open profiles, the non-debug jdk bundles, need an "open" prefix on the
835817
// remote bundle names, forming the word "openjdk". See JDK-8188789.
836818
common.main_profile_names.forEach(function (name) {

0 commit comments

Comments
 (0)