From d589bafee371c2bd16510f3e3039343331d4c524 Mon Sep 17 00:00:00 2001 From: Magnus Ihse Bursie Date: Mon, 2 Dec 2024 14:22:37 +0000 Subject: [PATCH] 8345218: Clean out references to windows-x86 in jib profiles Reviewed-by: shade, dholmes, kbarrett, jwaters --- make/conf/jib-profiles.js | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/make/conf/jib-profiles.js b/make/conf/jib-profiles.js index 25cf15c5f3b..0d906acdfcb 100644 --- a/make/conf/jib-profiles.js +++ b/make/conf/jib-profiles.js @@ -241,7 +241,7 @@ var getJibProfilesCommon = function (input, data) { // List of the main profile names used for iteration common.main_profile_names = [ "linux-x64", "linux-x86", "macosx-x64", "macosx-aarch64", - "windows-x64", "windows-x86", "windows-aarch64", + "windows-x64", "windows-aarch64", "linux-aarch64", "linux-arm32", "linux-ppc64le", "linux-s390x", "linux-riscv64" ]; @@ -465,15 +465,6 @@ var getJibProfilesProfiles = function (input, common, data) { configure_args: concat(common.configure_args_64bit), }, - "windows-x86": { - target_os: "windows", - target_cpu: "x86", - build_cpu: "x64", - dependencies: ["devkit", "gtest"], - configure_args: concat(common.configure_args_32bit, - "--enable-deprecated-ports"), - }, - "windows-aarch64": { target_os: "windows", target_cpu: "aarch64", @@ -716,10 +707,6 @@ var getJibProfilesProfiles = function (input, common, data) { platform: "windows-x64", jdk_suffix: "zip", }, - "windows-x86": { - platform: "windows-x86", - jdk_suffix: "zip", - }, "windows-aarch64": { platform: "windows-aarch64", jdk_suffix: "zip",