author | ihse |
Thu, 29 Mar 2018 01:06:12 +0200 | |
branch | ihse-runtestprebuilt-branch |
changeset 56363 | cf2a4a29266a |
parent 56362 | 6230fcdd4fd8 |
child 56872 | d55ba070479e |
permissions | -rw-r--r-- |
34491 | 1 |
/* |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
2 |
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. |
34491 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
/* |
|
34496 | 27 |
* This file defines build profiles for the JIB tool and others. |
34491 | 28 |
* |
29 |
* A build profile defines a set of configuration options and external |
|
30 |
* dependencies that we for some reason or other care about specifically. |
|
31 |
* Typically, build profiles are defined for the build configurations we |
|
32 |
* build regularly. |
|
33 |
* |
|
34 |
* Contract against this file from the tools that use it, is to provide |
|
35 |
* a function on the form: |
|
36 |
* |
|
34496 | 37 |
* getJibProfiles(input) |
34491 | 38 |
* |
39 |
* which returns an object graph describing the profiles and their |
|
40 |
* dependencies. The name of the function is based on the name of this |
|
41 |
* file, minus the extension and the '-', camel cased and prefixed with |
|
42 |
* 'get'. |
|
43 |
* |
|
44 |
* |
|
45 |
* The parameter 'input' is an object that optionally contains some data. |
|
46 |
* Optionally because a tool may read the configuration for different purposes. |
|
47 |
* To initially get a list of available profiles, the active profile may not |
|
48 |
* yet be known for instance. |
|
49 |
* |
|
50 |
* Data that may be set on the input object: |
|
51 |
* |
|
52 |
* input.profile = <name of active profile> |
|
53 |
* |
|
54 |
* If the active profile is set, the following data from it must also |
|
55 |
* be provided: |
|
56 |
* |
|
57 |
* input.profile |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
58 |
* input.build_id |
34491 | 59 |
* input.target_os |
60 |
* input.target_cpu |
|
61 |
* input.build_os |
|
62 |
* input.build_cpu |
|
63 |
* input.target_platform |
|
64 |
* input.build_platform |
|
65 |
* // The build_osenv_* variables describe the unix layer on Windows systems, |
|
66 |
* // i.e. Cygwin, which may also be 32 or 64 bit. |
|
67 |
* input.build_osenv |
|
68 |
* input.build_osenv_cpu |
|
69 |
* input.build_osenv_platform |
|
70 |
* |
|
71 |
* For more complex nested attributes, there is a method "get": |
|
72 |
* |
|
73 |
* input.get("<dependency>", "<attribute>") |
|
74 |
* |
|
75 |
* Valid attributes are: |
|
76 |
* install_path |
|
77 |
* download_path |
|
78 |
* download_dir |
|
79 |
* |
|
80 |
* |
|
81 |
* The output data generated by this configuration file has the following |
|
82 |
* format: |
|
83 |
* |
|
84 |
* data: { |
|
85 |
* // Identifies the version of this format to the tool reading it |
|
86 |
* format_version: "1.0", |
|
87 |
* |
|
34496 | 88 |
* // Name of base outputdir. JIB assumes the actual output dir is formed |
34491 | 89 |
* // by adding the configuration name: <output_basedir>/<config-name> |
90 |
* output_basedir: "build", |
|
91 |
* // Configure argument to use to specify configuration name |
|
92 |
* configuration_configure_arg: |
|
93 |
* // Make argument to use to specify configuration name |
|
94 |
* configuration_make_arg: |
|
95 |
* |
|
96 |
* profiles: { |
|
97 |
* <profile-name>: { |
|
98 |
* // Name of os the profile is built to run on |
|
99 |
* target_os; <string> |
|
100 |
* // Name of cpu the profile is built to run on |
|
101 |
* target_cpu; <string> |
|
102 |
* // Combination of target_os and target_cpu for convenience |
|
103 |
* target_platform; <string> |
|
104 |
* // Name of os the profile is built on |
|
105 |
* build_os; <string> |
|
106 |
* // Name of cpu the profile is built on |
|
107 |
* build_cpu; <string> |
|
108 |
* // Combination of build_os and build_cpu for convenience |
|
109 |
* build_platform; <string> |
|
110 |
* |
|
111 |
* // List of dependencies needed to build this profile |
|
112 |
* dependencies: <Array of strings> |
|
113 |
* |
|
114 |
* // List of configure args to use for this profile |
|
115 |
* configure_args: <Array of strings> |
|
116 |
* |
|
117 |
* // List of free form labels describing aspects of this profile |
|
118 |
* labels: <Array of strings> |
|
119 |
* } |
|
120 |
* } |
|
121 |
* |
|
122 |
* // Dependencies use a Maven like deployment structure |
|
123 |
* dependencies: { |
|
124 |
* <dependency-name>: { |
|
125 |
* // Organization part of path defining this dependency |
|
126 |
* organization: <string> |
|
127 |
* // File extension for this dependency |
|
128 |
* ext: <string> |
|
129 |
* // Module part of path for defining this dependency, |
|
130 |
* // defaults to <dependency-name> |
|
131 |
* module: <string> |
|
132 |
* // Revision part of path for defining this dependency |
|
133 |
* revision: <string> |
|
134 |
* |
|
135 |
* // List of configure args to add when using this dependency, |
|
136 |
* // defaults to |
|
137 |
* // "--with-<dependency-name>=input.get("<dependency-name", "install_path")" |
|
138 |
* configure_args: <array of strings> |
|
139 |
* |
|
140 |
* // Name of environment variable to set when using this dependency |
|
141 |
* // when running make |
|
142 |
* environment_name: <string> |
|
143 |
* // Value of environment variable to set when using this dependency |
|
144 |
* // when running make |
|
145 |
* environment_value: <string> |
|
146 |
* |
|
147 |
* // Value to add to the PATH variable when using this dependency, |
|
148 |
* // applies to both make and configure |
|
149 |
* environment_path: <string> |
|
150 |
* } |
|
151 |
* |
|
152 |
* <dependency-name>: { |
|
153 |
* // For certain dependencies where a legacy distribution mechanism is |
|
154 |
* // already in place, the "javare" server layout is also supported |
|
155 |
* // Indicate that an alternate server source and layout should be used |
|
156 |
* server: "javare" |
|
157 |
* |
|
158 |
* // For "javare", a combination of module, revision, |
|
159 |
* // build number (optional), files and checksum file is possible for |
|
160 |
* // artifacts following the standard layout. |
|
161 |
* module: <string> |
|
162 |
* revision: <string> |
|
163 |
* build_number: <string> |
|
164 |
* checksum_file: <string> |
|
165 |
* file: <string> |
|
166 |
* |
|
167 |
* // For other files, use checksum path and path instead |
|
168 |
* checksum_path: <string> |
|
169 |
* path: <string> |
|
170 |
* } |
|
171 |
* } |
|
172 |
* } |
|
173 |
*/ |
|
174 |
||
175 |
/** |
|
176 |
* Main entry to generate the profile configuration |
|
177 |
* |
|
178 |
* @param input External data to use for generating the configuration |
|
179 |
* @returns {{}} Profile configuration |
|
180 |
*/ |
|
34496 | 181 |
var getJibProfiles = function (input) { |
34491 | 182 |
|
183 |
var data = {}; |
|
184 |
||
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
185 |
// Identifies the version of this format to the tool reading it. |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
186 |
// 1.1 signifies that the publish, publish-src and get-src features are usable. |
56363 | 187 |
// FIXME: For testing purposes, try 1.2 |
188 |
//data.format_version = "1.1"; |
|
189 |
data.format_version = "1.2"; |
|
34491 | 190 |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
191 |
// Organization, product and version are used when uploading/publishing build results |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
192 |
data.organization = ""; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
193 |
data.product = "jdk"; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
194 |
data.version = getVersion(); |
34491 | 195 |
|
34496 | 196 |
// The base directory for the build output. JIB will assume that the |
34491 | 197 |
// actual build directory will be <output_basedir>/<configuration> |
198 |
data.output_basedir = "build"; |
|
199 |
// The configure argument to use to specify the name of the configuration |
|
200 |
data.configuration_configure_arg = "--with-conf-name="; |
|
201 |
// The make argument to use to specify the name of the configuration |
|
202 |
data.configuration_make_arg = "CONF_NAME="; |
|
203 |
||
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
204 |
// Exclude list to use when Jib creates a source bundle |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
205 |
data.src_bundle_excludes = "./build .build webrev* */webrev* */*/webrev* */*/*/webrev* .hg */.hg */*/.hg */*/*/.hg"; |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
206 |
// Include list to use when creating a minimal jib source bundle which |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
207 |
// contains just the jib configuration files. |
47928
fb62d4519338
8191715: Update documentation pointing to "common" directory
ihse
parents:
47825
diff
changeset
|
208 |
data.conf_bundle_includes = "*/conf/jib-profiles.* make/autoconf/version-numbers" |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
209 |
|
34491 | 210 |
// Define some common values |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
211 |
var common = getJibProfilesCommon(input, data); |
34491 | 212 |
// Generate the profiles part of the configuration |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
213 |
data.profiles = getJibProfilesProfiles(input, common, data); |
34491 | 214 |
// Generate the dependencies part of the configuration |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
215 |
data.dependencies = getJibProfilesDependencies(input, common, data); |
34491 | 216 |
|
217 |
return data; |
|
218 |
}; |
|
219 |
||
220 |
/** |
|
221 |
* Generates some common values |
|
222 |
* |
|
223 |
* @param input External data to use for generating the configuration |
|
224 |
* @returns Common values |
|
225 |
*/ |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
226 |
var getJibProfilesCommon = function (input, data) { |
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
227 |
var common = {}; |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
228 |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
229 |
common.organization = "jpg.infra.builddeps"; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
230 |
common.build_id = getBuildId(input); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
231 |
common.build_number = input.build_number != null ? input.build_number : "0"; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
232 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
233 |
// List of the main profile names used for iteration |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
234 |
common.main_profile_names = [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
235 |
"linux-x64", "linux-x86", "macosx-x64", "solaris-x64", |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
236 |
"solaris-sparcv9", "windows-x64", "windows-x86", |
49204
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
237 |
"linux-aarch64", "linux-arm64", "linux-arm-vfp-hflt", |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
238 |
"linux-arm-vfp-hflt-dyn" |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
239 |
]; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
240 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
241 |
// These are the base setttings for all the main build profiles. |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
242 |
common.main_profile_base = { |
46196
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
243 |
dependencies: ["boot_jdk", "gnumake", "jtreg", "jib"], |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
244 |
default_make_targets: ["product-bundles", "test-bundles"], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
245 |
configure_args: concat(["--enable-jtreg-failure-handler"], |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
246 |
versionArgs(input, common)) |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
247 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
248 |
// Extra settings for debug profiles |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
249 |
common.debug_suffix = "-debug"; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
250 |
common.debug_profile_base = { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
251 |
configure_args: ["--enable-debug"], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
252 |
labels: "debug" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
253 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
254 |
// Extra settings for slowdebug profiles |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
255 |
common.slowdebug_suffix = "-slowdebug"; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
256 |
common.slowdebug_profile_base = { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
257 |
configure_args: ["--with-debug-level=slowdebug"], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
258 |
labels: "slowdebug" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
259 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
260 |
// Extra settings for openjdk only profiles |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
261 |
common.open_suffix = "-open"; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
262 |
common.open_profile_base = { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
263 |
configure_args: ["--enable-openjdk-only"], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
264 |
labels: "open" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
265 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
266 |
|
42980
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
267 |
common.configure_args_64bit = ["--with-target-bits=64"]; |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
268 |
common.configure_args_32bit = ["--with-target-bits=32"]; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
269 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
270 |
/** |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
271 |
* Define common artifacts template for all main profiles |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
272 |
* @param o - Object containing data for artifacts |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
273 |
*/ |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
274 |
common.main_profile_artifacts = function (o) { |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
275 |
var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version); |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
276 |
var jre_subdir = (o.jre_subdir != null ? o.jre_subdir : "jre-" + data.version); |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
277 |
var pf = o.platform |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
278 |
return { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
279 |
artifacts: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
280 |
jdk: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
281 |
local: "bundles/\\(jdk.*bin.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
282 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
283 |
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
284 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
285 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
286 |
subdir: jdk_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
287 |
exploded: "images/jdk" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
288 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
289 |
jre: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
290 |
local: "bundles/\\(jre.*bin.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
291 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
292 |
"bundles/" + pf + "/jre-" + data.version + "_" + pf + "_bin.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
293 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
294 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
295 |
subdir: jre_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
296 |
exploded: "images/jre" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
297 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
298 |
test: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
299 |
local: "bundles/\\(jdk.*bin-tests.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
300 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
301 |
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
302 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
303 |
], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
304 |
exploded: "images/test" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
305 |
}, |
47440
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
306 |
test_demos: { |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
307 |
local: "bundles/\\(jdk.*bin-tests-demos.tar.gz\\)", |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
308 |
remote: [ |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
309 |
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests-demos.tar.gz", |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
310 |
"bundles/" + pf + "/\\1" |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
311 |
], |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
312 |
exploded: "images/test" |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47433
diff
changeset
|
313 |
}, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
314 |
jdk_symbols: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
315 |
local: "bundles/\\(jdk.*bin-symbols.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
316 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
317 |
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-symbols.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
318 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
319 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
320 |
subdir: jdk_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
321 |
exploded: "images/jdk" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
322 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
323 |
jre_symbols: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
324 |
local: "bundles/\\(jre.*bin-symbols.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
325 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
326 |
"bundles/" + pf + "/jre-" + data.version + "_" + pf + "_bin-symbols.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
327 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
328 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
329 |
subdir: jre_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
330 |
exploded: "images/jre" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
331 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
332 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
333 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
334 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
335 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
336 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
337 |
/** |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
338 |
* Define common artifacts template for all debug profiles |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
339 |
* @param o - Object containing data for artifacts |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
340 |
*/ |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
341 |
common.debug_profile_artifacts = function (o) { |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
342 |
var jdk_subdir = "jdk-" + data.version + "/fastdebug"; |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
343 |
var jre_subdir = "jre-" + data.version + "/fastdebug"; |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
344 |
var pf = o.platform |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
345 |
return { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
346 |
artifacts: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
347 |
jdk: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
348 |
local: "bundles/\\(jdk.*bin-debug.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
349 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
350 |
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
351 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
352 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
353 |
subdir: jdk_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
354 |
exploded: "images/jdk" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
355 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
356 |
jre: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
357 |
local: "bundles/\\(jre.*bin-debug.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
358 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
359 |
"bundles/" + pf + "/jre-" + data.version + "_" + pf + "_bin-debug.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
360 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
361 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
362 |
subdir: jre_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
363 |
exploded: "images/jre" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
364 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
365 |
test: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
366 |
local: "bundles/\\(jdk.*bin-tests-debug.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
367 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
368 |
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests-debug.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
369 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
370 |
], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
371 |
exploded: "images/test" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
372 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
373 |
jdk_symbols: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
374 |
local: "bundles/\\(jdk.*bin-debug-symbols.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
375 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
376 |
"bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug-symbols.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
377 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
378 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
379 |
subdir: jdk_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
380 |
exploded: "images/jdk" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
381 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
382 |
jre_symbols: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
383 |
local: "bundles/\\(jre.*bin-debug-symbols.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
384 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
385 |
"bundles/" + pf + "/jre-" + data.version + "_" + pf + "_bin-debug-symbols.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
386 |
"bundles/" + pf + "/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
387 |
], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
388 |
subdir: jre_subdir, |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
389 |
exploded: "images/jre" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
390 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
391 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
392 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
393 |
}; |
34491 | 394 |
|
47365 | 395 |
common.boot_jdk_version = "9"; |
396 |
common.boot_jdk_home = input.get("boot_jdk", "home_path") + "/jdk-" |
|
397 |
+ common.boot_jdk_version |
|
41047
de6f69208f82
8164301: jib should provide a JDK for running jtreg with
erikj
parents:
40241
diff
changeset
|
398 |
+ (input.build_os == "macosx" ? ".jdk/Contents/Home" : ""); |
de6f69208f82
8164301: jib should provide a JDK for running jtreg with
erikj
parents:
40241
diff
changeset
|
399 |
|
34491 | 400 |
return common; |
401 |
}; |
|
402 |
||
403 |
/** |
|
404 |
* Generates the profiles part of the configuration. |
|
405 |
* |
|
406 |
* @param input External data to use for generating the configuration |
|
407 |
* @param common The common values |
|
408 |
* @returns {{}} Profiles part of the configuration |
|
409 |
*/ |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
410 |
var getJibProfilesProfiles = function (input, common, data) { |
34491 | 411 |
// Main SE profiles |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
412 |
var profiles = { |
34491 | 413 |
|
414 |
"linux-x64": { |
|
415 |
target_os: "linux", |
|
416 |
target_cpu: "x64", |
|
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
417 |
dependencies: ["devkit", "autoconf", "graphviz", "pandoc"], |
44727 | 418 |
configure_args: concat(common.configure_args_64bit, |
419 |
"--enable-full-docs", "--with-zlib=system"), |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
420 |
default_make_targets: ["docs-bundles"], |
34491 | 421 |
}, |
422 |
||
423 |
"linux-x86": { |
|
424 |
target_os: "linux", |
|
425 |
target_cpu: "x86", |
|
426 |
build_cpu: "x64", |
|
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
427 |
dependencies: ["devkit", "autoconf"], |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
428 |
configure_args: concat(common.configure_args_32bit, |
39190
a6b5b18fd06c
8154209: Remove client VM from default JIB profile on windows-x86 and linux-x86
lmesnik
parents:
37972
diff
changeset
|
429 |
"--with-jvm-variants=minimal,server", "--with-zlib=system"), |
34491 | 430 |
}, |
431 |
||
432 |
"macosx-x64": { |
|
433 |
target_os: "macosx", |
|
434 |
target_cpu: "x64", |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49204
diff
changeset
|
435 |
dependencies: ["devkit", "autoconf"], |
45875 | 436 |
configure_args: concat(common.configure_args_64bit, "--with-zlib=system", |
437 |
"--with-macosx-version-max=10.7.0"), |
|
34491 | 438 |
}, |
439 |
||
440 |
"solaris-x64": { |
|
441 |
target_os: "solaris", |
|
442 |
target_cpu: "x64", |
|
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
443 |
dependencies: ["devkit", "autoconf", "cups"], |
42980
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
444 |
configure_args: concat(common.configure_args_64bit, |
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
445 |
"--with-zlib=system", "--enable-dtrace"), |
34491 | 446 |
}, |
447 |
||
448 |
"solaris-sparcv9": { |
|
449 |
target_os: "solaris", |
|
450 |
target_cpu: "sparcv9", |
|
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
451 |
dependencies: ["devkit", "autoconf", "cups"], |
42980
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
452 |
configure_args: concat(common.configure_args_64bit, |
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
453 |
"--with-zlib=system", "--enable-dtrace"), |
34491 | 454 |
}, |
455 |
||
456 |
"windows-x64": { |
|
457 |
target_os: "windows", |
|
458 |
target_cpu: "x64", |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49204
diff
changeset
|
459 |
dependencies: ["devkit", "autoconf"], |
42980
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
460 |
configure_args: concat(common.configure_args_64bit), |
34491 | 461 |
}, |
462 |
||
463 |
"windows-x86": { |
|
464 |
target_os: "windows", |
|
465 |
target_cpu: "x86", |
|
466 |
build_cpu: "x64", |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49204
diff
changeset
|
467 |
dependencies: ["devkit", "autoconf"], |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
468 |
configure_args: concat(common.configure_args_32bit), |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
469 |
}, |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
470 |
|
49204
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
471 |
"linux-aarch64": { |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
472 |
target_os: "linux", |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
473 |
target_cpu: "aarch64", |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
474 |
build_cpu: "x64", |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
475 |
dependencies: ["devkit", "autoconf", "build_devkit", "cups"], |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
476 |
configure_args: [ |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
477 |
"--openjdk-target=aarch64-linux-gnu" |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
478 |
], |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
479 |
}, |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
480 |
|
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
481 |
"linux-arm64": { |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
482 |
target_os: "linux", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
483 |
target_cpu: "aarch64", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
484 |
build_cpu: "x64", |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
485 |
dependencies: ["devkit", "autoconf", "build_devkit", "cups", "headless_stubs"], |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
486 |
configure_args: [ |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
487 |
"--with-cpu-port=arm64", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
488 |
"--with-jvm-variants=server", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
489 |
"--openjdk-target=aarch64-linux-gnu", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
490 |
"--enable-headless-only" |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
491 |
], |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
492 |
}, |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
493 |
|
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
494 |
"linux-arm-vfp-hflt": { |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
495 |
target_os: "linux", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
496 |
target_cpu: "arm", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
497 |
build_cpu: "x64", |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
498 |
dependencies: ["devkit", "autoconf", "build_devkit", "cups"], |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
499 |
configure_args: [ |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
500 |
"--with-jvm-variants=minimal1,client", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
501 |
"--with-x=" + input.get("devkit", "install_path") + "/arm-linux-gnueabihf/libc/usr/X11R6-PI", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
502 |
"--openjdk-target=arm-linux-gnueabihf", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
503 |
"--with-abi-profile=arm-vfp-hflt" |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
504 |
], |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
505 |
}, |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
506 |
|
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
507 |
// Special version of the SE profile adjusted to be testable on arm64 hardware. |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
508 |
"linux-arm-vfp-hflt-dyn": { |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
509 |
configure_args: "--with-stdc++lib=dynamic" |
34491 | 510 |
} |
511 |
}; |
|
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
512 |
// Let linux-arm-vfp-hflt-dyn inherit everything from linux-arm-vfp-hflt |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
513 |
profiles["linux-arm-vfp-hflt-dyn"] = concatObjects( |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
514 |
profiles["linux-arm-vfp-hflt-dyn"], profiles["linux-arm-vfp-hflt"]); |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
515 |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
516 |
// Add the base settings to all the main profiles |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
517 |
common.main_profile_names.forEach(function (name) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
518 |
profiles[name] = concatObjects(common.main_profile_base, profiles[name]); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
519 |
}); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
520 |
|
34491 | 521 |
// Generate debug versions of all the main profiles |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
522 |
common.main_profile_names.forEach(function (name) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
523 |
var debugName = name + common.debug_suffix; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
524 |
profiles[debugName] = concatObjects(profiles[name], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
525 |
common.debug_profile_base); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
526 |
}); |
36532 | 527 |
// Generate slowdebug versions of all the main profiles |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
528 |
common.main_profile_names.forEach(function (name) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
529 |
var debugName = name + common.slowdebug_suffix; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
530 |
profiles[debugName] = concatObjects(profiles[name], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
531 |
common.slowdebug_profile_base); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
532 |
}); |
49243 | 533 |
// Generate testmake profiles for the main profile of each build host |
534 |
// platform. This profile only runs the makefile tests. |
|
535 |
// Ant is needed to run the idea project generator test. |
|
536 |
var testmakeBase = { |
|
537 |
dependencies: [ "ant" ], |
|
538 |
environment: { |
|
539 |
"ANT_HOME": input.get("ant", "install_path") + "/apache-ant-1.7.1" |
|
540 |
} |
|
541 |
}; |
|
542 |
[ "linux-x64", "macosx-x64", "solaris-sparcv9", "solaris-x64", "windows-x64"] |
|
543 |
.forEach(function (name) { |
|
544 |
var maketestName = name + "-testmake"; |
|
545 |
profiles[maketestName] = concatObjects(profiles[name], testmakeBase); |
|
546 |
profiles[maketestName].default_make_targets = [ "test-make" ]; |
|
547 |
}); |
|
548 |
// Generate cmp-baseline profiles for each main profile. This profile does |
|
549 |
// a compare build run with no changes to verify that the compare script |
|
550 |
// has a clean baseline |
|
551 |
common.main_profile_names.forEach(function (name) { |
|
552 |
var cmpBaselineName = name + "-cmp-baseline"; |
|
553 |
profiles[cmpBaselineName] = clone(profiles[name]); |
|
554 |
// Only compare the images target. This should pressumably be expanded |
|
555 |
// to include more build targets when possible. |
|
556 |
profiles[cmpBaselineName].default_make_targets = [ "images" ]; |
|
557 |
profiles[cmpBaselineName].make_args = [ "COMPARE_BUILD=CONF=" ]; |
|
558 |
}); |
|
34491 | 559 |
|
42425 | 560 |
// Profiles for building the zero jvm variant. These are used for verification |
561 |
// in JPRT. |
|
562 |
var zeroProfiles = { |
|
563 |
"linux-x64-zero": { |
|
564 |
target_os: "linux", |
|
565 |
target_cpu: "x64", |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
566 |
dependencies: ["devkit"], |
42980
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
567 |
configure_args: concat(common.configure_args_64bit, [ |
42425 | 568 |
"--with-zlib=system", |
569 |
"--with-jvm-variants=zero", |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
570 |
"--enable-libffi-bundling" |
42980
4ab3d4b67cc0
8171500: Explicitly set --with-target-bits=64 in 64bit jib profiles
erikj
parents:
42848
diff
changeset
|
571 |
]) |
42425 | 572 |
}, |
573 |
||
574 |
"linux-x86-zero": { |
|
575 |
target_os: "linux", |
|
576 |
target_cpu: "x86", |
|
577 |
build_cpu: "x64", |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
578 |
dependencies: ["devkit"], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
579 |
configure_args: concat(common.configure_args_32bit, [ |
42425 | 580 |
"--with-zlib=system", |
581 |
"--with-jvm-variants=zero", |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
582 |
"--enable-libffi-bundling" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
583 |
]) |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
584 |
} |
42425 | 585 |
} |
586 |
profiles = concatObjects(profiles, zeroProfiles); |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
587 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
588 |
// Add the base settings to the zero profiles and generate debug profiles |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
589 |
Object.keys(zeroProfiles).forEach(function (name) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
590 |
var debugName = name + common.debug_suffix; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
591 |
profiles[name] = concatObjects(common.main_profile_base, profiles[name]); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
592 |
profiles[debugName] = concatObjects(profiles[name], common.debug_profile_base); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
593 |
}); |
42425 | 594 |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
595 |
// |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
596 |
// Define artifacts for profiles |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
597 |
// |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
598 |
// Macosx bundles are named osx |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
599 |
// tar.gz. |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
600 |
var artifactData = { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
601 |
"linux-x64": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
602 |
platform: "linux-x64", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
603 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
604 |
"linux-x86": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
605 |
platform: "linux-x86", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
606 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
607 |
"macosx-x64": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
608 |
platform: "osx-x64", |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
609 |
jdk_subdir: "jdk-" + data.version + ".jdk/Contents/Home", |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
610 |
jre_subdir: "jre-" + data.version + ".jre/Contents/Home" |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
611 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
612 |
"solaris-x64": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
613 |
platform: "solaris-x64", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
614 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
615 |
"solaris-sparcv9": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
616 |
platform: "solaris-sparcv9", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
617 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
618 |
"windows-x64": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
619 |
platform: "windows-x64", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
620 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
621 |
"windows-x86": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
622 |
platform: "windows-x86", |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
623 |
}, |
49204
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
624 |
"linux-aarch64": { |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
625 |
platform: "linux-aarch64", |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
626 |
}, |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
627 |
"linux-arm64": { |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
628 |
platform: "linux-arm64-vfp-hflt", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
629 |
}, |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
630 |
"linux-arm-vfp-hflt": { |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
631 |
platform: "linux-arm32-vfp-hflt", |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
632 |
}, |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
633 |
"linux-arm-vfp-hflt-dyn": { |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
634 |
platform: "linux-arm32-vfp-hflt-dyn", |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
635 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
636 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
637 |
// Generate common artifacts for all main profiles |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
638 |
Object.keys(artifactData).forEach(function (name) { |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
639 |
profiles[name] = concatObjects(profiles[name], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
640 |
common.main_profile_artifacts(artifactData[name])); |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
641 |
}); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
642 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
643 |
// Generate common artifacts for all debug profiles |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
644 |
Object.keys(artifactData).forEach(function (name) { |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
645 |
var debugName = name + common.debug_suffix; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
646 |
profiles[debugName] = concatObjects(profiles[debugName], |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
647 |
common.debug_profile_artifacts(artifactData[name])); |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
648 |
}); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
649 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
650 |
profilesArtifacts = { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
651 |
"linux-x64": { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
652 |
artifacts: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
653 |
doc_api_spec: { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
654 |
local: "bundles/\\(jdk.*doc-api-spec.tar.gz\\)", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
655 |
remote: [ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
656 |
"bundles/common/jdk-" + data.version + "_doc-api-spec.tar.gz", |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
657 |
"bundles/linux-x64/\\1" |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
658 |
], |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
659 |
}, |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
660 |
} |
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
661 |
} |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
662 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
663 |
profiles = concatObjects(profiles, profilesArtifacts); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
664 |
|
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
665 |
// Generate open only profiles for all the main and debug profiles. |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
666 |
// Rewrite artifact remote paths by adding "openjdk/GPL". |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
667 |
common.main_profile_names.forEach(function (name) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
668 |
var openName = name + common.open_suffix; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
669 |
profiles[openName] = concatObjects(profiles[name], |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
670 |
common.open_profile_base); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
671 |
for (artifactName in profiles[openName].artifacts) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
672 |
var artifact = profiles[openName].artifacts[artifactName]; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
673 |
artifact.remote = replaceAll( |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
674 |
"bundles\/", "bundles/openjdk/GPL/", |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
675 |
(artifact.remote != null ? artifact.remote : artifact.local)); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
676 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
677 |
var debugName = name + common.debug_suffix; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
678 |
var openDebugName = name + common.open_suffix + common.debug_suffix; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
679 |
profiles[openDebugName] = concatObjects(profiles[debugName], |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
680 |
common.open_profile_base); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
681 |
for (artifactName in profiles[openDebugName].artifacts) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
682 |
var artifact = profiles[openDebugName].artifacts[artifactName]; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
683 |
artifact.remote = replaceAll( |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
684 |
"bundles\/", "bundles/openjdk/GPL/", |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
685 |
(artifact.remote != null ? artifact.remote : artifact.local)); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
686 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
687 |
}); |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
688 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
689 |
// Define the reference implementation profiles. These are basically the same |
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
690 |
// as the open profiles, but upload artifacts to a different location. |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
691 |
common.main_profile_names.forEach(function (name) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
692 |
var riName = name + "-ri"; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
693 |
var riDebugName = riName + common.debug_suffix; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
694 |
var openName = name + common.open_suffix; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
695 |
var openDebugName = openName + common.debug_suffix; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
696 |
profiles[riName] = clone(profiles[openName]); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
697 |
profiles[riDebugName] = clone(profiles[openDebugName]); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
698 |
// Rewrite all remote dirs to "bundles/openjdk/BCL/..." |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
699 |
for (artifactName in profiles[riName].artifacts) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
700 |
var artifact = profiles[riName].artifacts[artifactName]; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
701 |
artifact.remote = replaceAll( |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
702 |
"\/GPL\/", "/BCL/", |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
703 |
(artifact.remote != null ? artifact.remote : artifact.local)); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
704 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
705 |
}); |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
706 |
|
48212
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
707 |
// For open profiles, the non-debug jdk bundles, need an "open" prefix on the |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
708 |
// remote bundle names, forming the word "openjdk". See JDK-8188789. |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
709 |
common.main_profile_names.forEach(function (name) { |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
710 |
var openName = name + common.open_suffix; |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
711 |
profiles[openName].artifacts["jdk"].remote = replaceAll( |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
712 |
"\/jdk-", "/openjdk-", |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
713 |
replaceAll("\/\\1", "/open\\1", |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
714 |
profiles[openName].artifacts["jdk"].remote)); |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
715 |
}); |
6a8ab8d1fb8b
8188789: Update JDK 9.0.1 and Future OpenJDK bundle names
erikj
parents:
48079
diff
changeset
|
716 |
|
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
717 |
// Profiles used to run tests. Used in JPRT and Mach 5. |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
718 |
var testOnlyProfiles = { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
719 |
"run-test-jprt": { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
720 |
target_os: input.build_os, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
721 |
target_cpu: input.build_cpu, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
722 |
dependencies: [ "jtreg", "gnumake", "boot_jdk", "devkit", "jib" ], |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
723 |
labels: "test", |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
724 |
environment: { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
725 |
"JT_JAVA": common.boot_jdk_home |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
726 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
727 |
}, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
728 |
|
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
729 |
"run-test": { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
730 |
target_os: input.build_os, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
731 |
target_cpu: input.build_cpu, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
732 |
dependencies: [ "jtreg", "gnumake", "boot_jdk", "devkit", "jib" ], |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
733 |
labels: "test", |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
734 |
environment: { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
735 |
"JT_JAVA": common.boot_jdk_home |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
736 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
737 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
738 |
}; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
739 |
profiles = concatObjects(profiles, testOnlyProfiles); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
740 |
|
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
741 |
// Profiles used to run tests using Jib for internal dependencies. |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
742 |
var testedProfile = input.testedProfile; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
743 |
if (testedProfile == null) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
744 |
testedProfile = input.build_os + "-" + input.build_cpu; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
745 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
746 |
var testOnlyProfilesPrebuilt = { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
747 |
"run-test-prebuilt": { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
748 |
target_os: input.build_os, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
749 |
target_cpu: input.build_cpu, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
750 |
src: "src.conf", |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
751 |
dependencies: [ "jtreg", "gnumake", "boot_jdk", "jib", testedProfile + ".jdk", |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
752 |
testedProfile + ".test", "src.full" |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
753 |
], |
56362
6230fcdd4fd8
Enable us to work with run-test-prebuilt from sparky-executor.
ihse
parents:
49412
diff
changeset
|
754 |
work_dir: input.get("src.full", "install_path"), |
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
755 |
environment: { |
56362
6230fcdd4fd8
Enable us to work with run-test-prebuilt from sparky-executor.
ihse
parents:
49412
diff
changeset
|
756 |
"BOOT_JDK": common.boot_jdk_home, |
6230fcdd4fd8
Enable us to work with run-test-prebuilt from sparky-executor.
ihse
parents:
49412
diff
changeset
|
757 |
"JDK_IMAGE_DIR": input.get(testedProfile + ".jdk", "home_path"), |
6230fcdd4fd8
Enable us to work with run-test-prebuilt from sparky-executor.
ihse
parents:
49412
diff
changeset
|
758 |
"TEST_IMAGE_DIR": input.get(testedProfile + ".test", "home_path") |
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
759 |
}, |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
760 |
labels: "test" |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
761 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
762 |
}; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
763 |
|
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
764 |
// If actually running the run-test-prebuilt profile, verify that the input |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
765 |
// variable is valid and if so, add the appropriate target_* values from |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
766 |
// the tested profile. |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
767 |
if (input.profile == "run-test-prebuilt") { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
768 |
if (profiles[testedProfile] == null) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
769 |
error("testedProfile is not defined: " + testedProfile); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
770 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
771 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
772 |
if (profiles[testedProfile] != null) { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
773 |
testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_os"] |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
774 |
= profiles[testedProfile]["target_os"]; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
775 |
testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_cpu"] |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
776 |
= profiles[testedProfile]["target_cpu"]; |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
777 |
} |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
778 |
profiles = concatObjects(profiles, testOnlyProfilesPrebuilt); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
779 |
|
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
780 |
// On macosx add the devkit bin dir to the path in all the run-test profiles. |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
781 |
// This gives us a guaranteed working version of lldb for the jtreg failure handler. |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
782 |
if (input.build_os == "macosx") { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
783 |
macosxRunTestExtra = { |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
784 |
dependencies: [ "devkit" ], |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
785 |
environment_path: input.get("devkit", "install_path") |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
786 |
+ "/Xcode.app/Contents/Developer/usr/bin" |
49147
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
787 |
}; |
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
788 |
profiles["run-test"] = concatObjects(profiles["run-test"], macosxRunTestExtra); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
789 |
profiles["run-test-jprt"] = concatObjects(profiles["run-test-jprt"], macosxRunTestExtra); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
790 |
profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], macosxRunTestExtra); |
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
791 |
} |
49147
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
792 |
// On windows we want the debug symbols available at test time |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
793 |
if (input.build_os == "windows") { |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
794 |
windowsRunTestPrebuiltExtra = { |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
795 |
dependencies: [ testedProfile + ".jdk_symbols" ], |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
796 |
environment: { |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
797 |
"PRODUCT_SYMBOLS_HOME": input.get(testedProfile + ".jdk_symbols", "home_path"), |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
798 |
} |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
799 |
}; |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
800 |
profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
801 |
windowsRunTestPrebuiltExtra); |
af37d9997bd6
8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents:
48924
diff
changeset
|
802 |
} |
47721
d2b306a70bf1
8190735: Define all base artifacts for all open/open-debug profiles
erikj
parents:
47701
diff
changeset
|
803 |
|
34491 | 804 |
// Generate the missing platform attributes |
805 |
profiles = generatePlatformAttributes(profiles); |
|
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
806 |
profiles = generateDefaultMakeTargetsConfigureArg(common, profiles); |
34491 | 807 |
return profiles; |
808 |
}; |
|
809 |
||
810 |
/** |
|
811 |
* Generate the dependencies part of the configuration |
|
812 |
* |
|
813 |
* @param input External data to use for generating the configuration |
|
814 |
* @param common The common values |
|
815 |
* @returns {{}} Dependencies part of configuration |
|
816 |
*/ |
|
34496 | 817 |
var getJibProfilesDependencies = function (input, common) { |
34491 | 818 |
|
819 |
var devkit_platform_revisions = { |
|
49357
aaedb8343784
8198243: Add build time check for global operator new/delete in object files
erikj
parents:
48924
diff
changeset
|
820 |
linux_x64: "gcc4.9.2-OEL6.4+1.3", |
34491 | 821 |
macosx_x64: "Xcode6.3-MacOSX10.9+1.0", |
34595
09596fe63e2d
8145391: Updated jprt.properties, devtools, jib and readme with SS12u4
erikj
parents:
34496
diff
changeset
|
822 |
solaris_x64: "SS12u4-Solaris11u1+1.0", |
48909
54b423e1c4cf
8153294: Solaris devkit uses linker from system instead of in devkit
erikj
parents:
48888
diff
changeset
|
823 |
solaris_sparcv9: "SS12u4-Solaris11u1+1.1", |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
824 |
windows_x64: "VS2013SP4+1.0", |
49204
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
825 |
linux_aarch64: (input.profile != null && input.profile.indexOf("arm64") >= 0 |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
826 |
? "gcc-linaro-aarch64-linux-gnu-4.8-2013.11_linux+1.0" |
564802b01ded
8199451: Create linux-aarch64 cross-compilation devkit, and fix cross-compilation
ihse
parents:
49147
diff
changeset
|
827 |
: "gcc7.3.0-Fedora27+1.0"), |
44625
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
828 |
linux_arm: (input.profile != null && input.profile.indexOf("hflt") >= 0 |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
829 |
? "gcc-linaro-arm-linux-gnueabihf-raspbian-2012.09-20120921_linux+1.0" |
cf100f579077
8177822: Move closed jib configuration for arm platforms to open
erikj
parents:
44513
diff
changeset
|
830 |
: "arm-linaro-4.7+1.0") |
34491 | 831 |
}; |
832 |
||
833 |
var devkit_platform = (input.target_cpu == "x86" |
|
834 |
? input.target_os + "_x64" |
|
835 |
: input.target_platform); |
|
836 |
||
47364 | 837 |
var boot_jdk_platform = (input.build_os == "macosx" ? "osx" : input.build_os) |
838 |
+ "-" + input.build_cpu; |
|
839 |
||
48079
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
840 |
var makeBinDir = (input.build_os == "windows" |
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
841 |
? input.get("gnumake", "install_path") + "/cygwin/bin" |
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
842 |
: input.get("gnumake", "install_path") + "/bin"); |
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
843 |
|
34491 | 844 |
var dependencies = { |
845 |
||
846 |
boot_jdk: { |
|
47364 | 847 |
server: "jpg", |
848 |
product: "jdk", |
|
47365 | 849 |
version: common.boot_jdk_version, |
47364 | 850 |
build_number: "181", |
47365 | 851 |
file: "bundles/" + boot_jdk_platform + "/jdk-" + common.boot_jdk_version + "_" |
47364 | 852 |
+ boot_jdk_platform + "_bin.tar.gz", |
41047
de6f69208f82
8164301: jib should provide a JDK for running jtreg with
erikj
parents:
40241
diff
changeset
|
853 |
configure_args: "--with-boot-jdk=" + common.boot_jdk_home, |
43288
58b8748ef90d
8173476: Provide lldb from devkit when running tests on macosx
erikj
parents:
43049
diff
changeset
|
854 |
environment_path: common.boot_jdk_home + "/bin" |
34491 | 855 |
}, |
856 |
||
857 |
devkit: { |
|
858 |
organization: common.organization, |
|
859 |
ext: "tar.gz", |
|
860 |
module: "devkit-" + devkit_platform, |
|
861 |
revision: devkit_platform_revisions[devkit_platform] |
|
862 |
}, |
|
863 |
||
864 |
build_devkit: { |
|
865 |
organization: common.organization, |
|
866 |
ext: "tar.gz", |
|
867 |
module: "devkit-" + input.build_platform, |
|
868 |
revision: devkit_platform_revisions[input.build_platform] |
|
869 |
}, |
|
870 |
||
871 |
cups: { |
|
872 |
organization: common.organization, |
|
873 |
ext: "tar.gz", |
|
874 |
revision: "1.0118+1.0" |
|
875 |
}, |
|
876 |
||
877 |
jtreg: { |
|
878 |
server: "javare", |
|
36506 | 879 |
revision: "4.2", |
48833
614c7e117327
8196583: Update jib and test jtreg version to 4.2 b12
psandoz
parents:
48357
diff
changeset
|
880 |
build_number: "b12", |
34491 | 881 |
checksum_file: "MD5_VALUES", |
36506 | 882 |
file: "jtreg_bin-4.2.zip", |
41047
de6f69208f82
8164301: jib should provide a JDK for running jtreg with
erikj
parents:
40241
diff
changeset
|
883 |
environment_name: "JT_HOME", |
de6f69208f82
8164301: jib should provide a JDK for running jtreg with
erikj
parents:
40241
diff
changeset
|
884 |
environment_path: input.get("jtreg", "install_path") + "/jtreg/bin" |
34491 | 885 |
}, |
886 |
||
887 |
gnumake: { |
|
888 |
organization: common.organization, |
|
889 |
ext: "tar.gz", |
|
890 |
revision: "4.0+1.0", |
|
891 |
||
892 |
module: (input.build_os == "windows" |
|
893 |
? "gnumake-" + input.build_osenv_platform |
|
894 |
: "gnumake-" + input.build_platform), |
|
895 |
||
48079
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
896 |
configure_args: "MAKE=" + makeBinDir + "/make", |
34491 | 897 |
|
48079
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
898 |
environment: { |
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
899 |
"MAKE": makeBinDir + "/make" |
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
900 |
}, |
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
901 |
|
eaa406097d93
8193060: Set MAKE env variable in jib profile for gnumake
ihse
parents:
48035
diff
changeset
|
902 |
environment_path: makeBinDir |
34491 | 903 |
}, |
904 |
||
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
905 |
autoconf: { |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
906 |
organization: common.organization, |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
907 |
ext: "tar.gz", |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
908 |
revision: "2.69+1.0.1", |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
909 |
module: (input.build_os == "windows" |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
910 |
? "autoconf-" + input.build_osenv_platform |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
911 |
: "autoconf-" + input.build_platform), |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
912 |
configure_args: "", |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
913 |
environment_path: input.get("autoconf", "install_path") |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
914 |
}, |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
915 |
|
44727 | 916 |
graphviz: { |
917 |
organization: common.organization, |
|
918 |
ext: "tar.gz", |
|
919 |
revision: "2.38.0-1+1.1", |
|
920 |
module: "graphviz-" + input.target_platform, |
|
45107 | 921 |
configure_args: "DOT=" + input.get("graphviz", "install_path") + "/dot", |
922 |
environment_path: input.get("graphviz", "install_path") |
|
44727 | 923 |
}, |
44734 | 924 |
|
925 |
pandoc: { |
|
926 |
organization: common.organization, |
|
927 |
ext: "tar.gz", |
|
928 |
revision: "1.17.2+1.0", |
|
929 |
module: "pandoc-" + input.target_platform, |
|
45107 | 930 |
configure_args: "PANDOC=" + input.get("pandoc", "install_path") + "/pandoc/pandoc", |
931 |
environment_path: input.get("pandoc", "install_path") + "/pandoc" |
|
44734 | 932 |
}, |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
48357
diff
changeset
|
933 |
|
46196
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
934 |
// This adds java jib as a dependency for the test artifacts resolver |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
935 |
jib: { |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
936 |
organization: "com.oracle.java.jib", |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
937 |
ext: "zip", |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
938 |
classifier: "distribution", |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
939 |
revision: "3.0-SNAPSHOT", |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
940 |
environment_name: "JIB_JAR", |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
941 |
environment_value: input.get("jib", "install_path") |
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
942 |
+ "/jib-3.0-SNAPSHOT-distribution/lib/jib-3.0-SNAPSHOT.jar" |
49243 | 943 |
}, |
944 |
||
945 |
ant: { |
|
946 |
organization: common.organization, |
|
947 |
ext: "zip", |
|
948 |
revision: "1.7.1+1.0", |
|
949 |
configure_args: "", |
|
950 |
}, |
|
951 |
||
34491 | 952 |
}; |
953 |
||
46192 | 954 |
// Need to add a value for the Visual Studio tools variable to make |
955 |
// jaot be able to pick up the Visual Studio linker in testing. |
|
956 |
if (input.target_os == "windows") { |
|
957 |
dependencies.devkit.environment = { |
|
958 |
VS120COMNTOOLS: input.get("devkit", "install_path") + "/Common7/Tools" |
|
959 |
}; |
|
960 |
} |
|
961 |
||
34491 | 962 |
return dependencies; |
963 |
}; |
|
964 |
||
965 |
/** |
|
966 |
* Generate the missing platform attributes for profiles |
|
967 |
* |
|
968 |
* @param profiles Profiles map to generate attributes on |
|
969 |
* @returns {{}} New profiles map with platform attributes fully filled in |
|
970 |
*/ |
|
971 |
var generatePlatformAttributes = function (profiles) { |
|
972 |
var ret = concatObjects(profiles, {}); |
|
973 |
for (var profile in profiles) { |
|
974 |
if (ret[profile].build_os == null) { |
|
975 |
ret[profile].build_os = ret[profile].target_os; |
|
976 |
} |
|
977 |
if (ret[profile].build_cpu == null) { |
|
978 |
ret[profile].build_cpu = ret[profile].target_cpu; |
|
979 |
} |
|
980 |
ret[profile].target_platform = ret[profile].target_os + "_" + ret[profile].target_cpu; |
|
981 |
ret[profile].build_platform = ret[profile].build_os + "_" + ret[profile].build_cpu; |
|
982 |
} |
|
983 |
return ret; |
|
984 |
}; |
|
985 |
||
986 |
/** |
|
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
987 |
* The default_make_targets attribute on a profile is not a real Jib attribute. |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
988 |
* This function rewrites that attribute into the corresponding configure arg. |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
989 |
* Calling this function multiple times on the same profiles object is safe. |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
990 |
* |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
991 |
* @param common Common values |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
992 |
* @param profiles Profiles map to rewrite profiles for |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
993 |
* @returns {{}} New map of profiles with the make targets converted |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
994 |
*/ |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
995 |
var generateDefaultMakeTargetsConfigureArg = function (common, profiles) { |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
996 |
var ret = concatObjects(profiles, {}); |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
997 |
for (var profile in ret) { |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
998 |
if (ret[profile]["default_make_targets"] != null) { |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
999 |
var targetsString = concat(ret[profile].default_make_targets).join(" "); |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1000 |
// Iterate over all configure args and see if --with-default-make-target |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1001 |
// is already there and change it, otherwise add it. |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1002 |
var found = false; |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1003 |
for (var i in ret[profile].configure_args) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1004 |
var arg = ret[profile].configure_args[i]; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1005 |
if (arg != null && arg.startsWith("--with-default-make-target=")) { |
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1006 |
found = true; |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1007 |
ret[profile].configure_args[i] |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1008 |
= "--with-default-make-target=" + targetsString; |
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1009 |
} |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1010 |
} |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1011 |
if (!found) { |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1012 |
ret[profile].configure_args = concat( |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1013 |
ret[profile].configure_args, |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1014 |
"--with-default-make-target=" + targetsString); |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1015 |
} |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1016 |
} |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1017 |
} |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1018 |
return ret; |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1019 |
} |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1020 |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1021 |
var getBuildId = function (input) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1022 |
if (input.build_id != null) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1023 |
return input.build_id; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1024 |
} else { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1025 |
var topdir = new java.io.File(__DIR__, "../..").getCanonicalFile().getName(); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1026 |
var userName = java.lang.System.getProperty("user.name"); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1027 |
return userName + "." + topdir; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1028 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1029 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1030 |
|
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
1031 |
/** |
34491 | 1032 |
* Deep clones an object tree. |
1033 |
* |
|
1034 |
* @param o Object to clone |
|
1035 |
* @returns {{}} Clone of o |
|
1036 |
*/ |
|
1037 |
var clone = function (o) { |
|
1038 |
return JSON.parse(JSON.stringify(o)); |
|
1039 |
}; |
|
1040 |
||
1041 |
/** |
|
1042 |
* Concatenates all arguments into a new array |
|
1043 |
* |
|
1044 |
* @returns {Array.<T>} New array containing all arguments |
|
1045 |
*/ |
|
1046 |
var concat = function () { |
|
1047 |
return Array.prototype.concat.apply([], arguments); |
|
1048 |
}; |
|
1049 |
||
1050 |
/** |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1051 |
* Takes a String or Array of Strings and does a replace operation on each |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1052 |
* of them. |
34491 | 1053 |
* |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1054 |
* @param pattern Pattern to look for |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1055 |
* @param replacement Replacement text to insert |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1056 |
* @param a String or Array of Strings to replace |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1057 |
* @returns {Array} Either a new array or a new string depending on the input |
34491 | 1058 |
*/ |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1059 |
var replaceAll = function (pattern, replacement, a) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1060 |
// If a is an array |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1061 |
if (Array === a.constructor) { |
34491 | 1062 |
var newA = []; |
1063 |
for (var i in a) { |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1064 |
newA.push(a[i].replace(pattern, replacement)); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1065 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1066 |
return newA; |
34491 | 1067 |
} else { |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1068 |
return a.replace(pattern, replacement); |
34491 | 1069 |
} |
1070 |
}; |
|
1071 |
||
1072 |
/** |
|
1073 |
* Deep concatenation of two objects. For each node encountered, merge |
|
1074 |
* the contents with the corresponding node in the other object tree, |
|
1075 |
* treating all strings as array elements. |
|
1076 |
* |
|
1077 |
* @param o1 Object to concatenate |
|
1078 |
* @param o2 Object to concatenate |
|
1079 |
* @returns {{}} New object tree containing the concatenation of o1 and o2 |
|
1080 |
*/ |
|
1081 |
var concatObjects = function (o1, o2) { |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1082 |
if (o1 == null) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1083 |
return clone(o2); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1084 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1085 |
if (o2 == null) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1086 |
return clone(o1); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1087 |
} |
34491 | 1088 |
var ret = {}; |
1089 |
for (var a in o1) { |
|
1090 |
if (o2[a] == null) { |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1091 |
ret[a] = clone(o1[a]); |
34491 | 1092 |
} |
1093 |
} |
|
1094 |
for (var a in o2) { |
|
1095 |
if (o1[a] == null) { |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1096 |
ret[a] = clone(o2[a]); |
34491 | 1097 |
} else { |
1098 |
if (typeof o1[a] == 'string') { |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1099 |
ret[a] = clone([o1[a]].concat(o2[a])); |
34491 | 1100 |
} else if (Array.isArray(o1[a])) { |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1101 |
ret[a] = clone(o1[a].concat(o2[a])); |
34491 | 1102 |
} else if (typeof o1[a] == 'object') { |
1103 |
ret[a] = concatObjects(o1[a], o2[a]); |
|
1104 |
} |
|
1105 |
} |
|
1106 |
} |
|
1107 |
return ret; |
|
1108 |
}; |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1109 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1110 |
/** |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1111 |
* Constructs the numeric version string from reading the |
47928
fb62d4519338
8191715: Update documentation pointing to "common" directory
ihse
parents:
47825
diff
changeset
|
1112 |
* make/autoconf/version-numbers file and removing all trailing ".0". |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1113 |
* |
48327 | 1114 |
* @param feature Override feature version |
1115 |
* @param interim Override interim version |
|
1116 |
* @param update Override update version |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1117 |
* @param patch Override patch version |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1118 |
* @returns {String} The numeric version string |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1119 |
*/ |
48327 | 1120 |
var getVersion = function (feature, interim, update, patch) { |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1121 |
var version_numbers = getVersionNumbers(); |
48327 | 1122 |
var version = (feature != null ? feature : version_numbers.get("DEFAULT_VERSION_FEATURE")) |
1123 |
+ "." + (interim != null ? interim : version_numbers.get("DEFAULT_VERSION_INTERIM")) |
|
1124 |
+ "." + (update != null ? update : version_numbers.get("DEFAULT_VERSION_UPDATE")) |
|
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1125 |
+ "." + (patch != null ? patch : version_numbers.get("DEFAULT_VERSION_PATCH")); |
43600 | 1126 |
while (version.match(".*\\.0$")) { |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1127 |
version = version.substring(0, version.length - 2); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1128 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1129 |
return version; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1130 |
}; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1131 |
|
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1132 |
/** |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1133 |
* Constructs the common version configure args based on build type and |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1134 |
* other version inputs |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1135 |
*/ |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1136 |
var versionArgs = function(input, common) { |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1137 |
var args = ["--with-version-build=" + common.build_number]; |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1138 |
if (input.build_type == "promoted") { |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1139 |
args = concat(args, |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1140 |
// This needs to be changed when we start building release candidates |
48773 | 1141 |
// with-version-pre must be set to ea for 'ea' and empty for fcs build |
48924
1913e7fc6be9
8198301: jdk11+1 was built as 'fcs' instead of 'ea'
diazhou
parents:
48909
diff
changeset
|
1142 |
"--with-version-pre=ea", |
45048
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1143 |
"--without-version-opt"); |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1144 |
} else { |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1145 |
args = concat(args, "--with-version-opt=" + common.build_id); |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1146 |
} |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1147 |
return args; |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1148 |
} |
665cd82e98dc
8180081: Adjust Jib and JDL configuration for 10 to support promotable builds
erikj
parents:
44894
diff
changeset
|
1149 |
|
47928
fb62d4519338
8191715: Update documentation pointing to "common" directory
ihse
parents:
47825
diff
changeset
|
1150 |
// Properties representation of the make/autoconf/version-numbers file. Lazily |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1151 |
// initiated by the function below. |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1152 |
var version_numbers; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1153 |
|
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1154 |
/** |
47928
fb62d4519338
8191715: Update documentation pointing to "common" directory
ihse
parents:
47825
diff
changeset
|
1155 |
* Read the make/autoconf/version-numbers file into a Properties object. |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1156 |
* |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1157 |
* @returns {java.utilProperties} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1158 |
*/ |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1159 |
var getVersionNumbers = function () { |
47928
fb62d4519338
8191715: Update documentation pointing to "common" directory
ihse
parents:
47825
diff
changeset
|
1160 |
// Read version information from make/autoconf/version-numbers |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1161 |
if (version_numbers == null) { |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1162 |
version_numbers = new java.util.Properties(); |
47217 | 1163 |
var stream = new java.io.FileInputStream(__DIR__ + "/../autoconf/version-numbers"); |
42848
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1164 |
version_numbers.load(stream); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1165 |
stream.close(); |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1166 |
} |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1167 |
return version_numbers; |
27ad8b2418f7
8170741: Enable uploading of built artifacts through Jib
erikj
parents:
42425
diff
changeset
|
1168 |
} |