< prev index next >

make/conf/jib-profiles.js

Print this page

1157         build_devkit: {
1158             organization: common.organization,
1159             ext: "tar.gz",
1160             module: "devkit-" + input.build_platform,
1161             revision: devkit_platform_revisions[input.build_platform],
1162             // Only set --with-build-devkit when cross compiling.
1163             configure_args: (input.build_cpu == input.target_cpu ? false
1164                 : "--with-build-devkit=" + input.get("build_devkit", "home_path"))
1165         },
1166 
1167         lldb: {
1168             organization: common.organization,
1169             ext: "tar.gz",
1170             module: "devkit-macosx" + (input.build_cpu == "x64" ? "_x64" : ""),
1171             revision: (input.build_cpu == "x64" ? "Xcode11.3.1-MacOSX10.15+1.2" : devkit_platform_revisions[devkit_platform])
1172         },
1173 
1174         jtreg: {
1175             server: "jpg",
1176             product: "jtreg",
1177             version: "8.2.1",
1178             build_number: "1",
1179             file: "bundles/jtreg-8.2.1+1.zip",
1180             environment_name: "JT_HOME",
1181             environment_path: input.get("jtreg", "home_path") + "/bin",
1182             configure_args: "--with-jtreg=" + input.get("jtreg", "home_path"),
1183         },
1184 
1185         jmh: {
1186             organization: common.organization,
1187             ext: "tar.gz",
1188             revision: "1.37+1.0"
1189         },
1190 
1191         jcov: {
1192             server: "jpg",
1193             product: "jcov",
1194             version: "3.0",
1195             build_number: "6",
1196             file: "bundles/jcov-3.0+6.zip",
1197             environment_name: "JCOV_HOME",
1198         },
1199 

1157         build_devkit: {
1158             organization: common.organization,
1159             ext: "tar.gz",
1160             module: "devkit-" + input.build_platform,
1161             revision: devkit_platform_revisions[input.build_platform],
1162             // Only set --with-build-devkit when cross compiling.
1163             configure_args: (input.build_cpu == input.target_cpu ? false
1164                 : "--with-build-devkit=" + input.get("build_devkit", "home_path"))
1165         },
1166 
1167         lldb: {
1168             organization: common.organization,
1169             ext: "tar.gz",
1170             module: "devkit-macosx" + (input.build_cpu == "x64" ? "_x64" : ""),
1171             revision: (input.build_cpu == "x64" ? "Xcode11.3.1-MacOSX10.15+1.2" : devkit_platform_revisions[devkit_platform])
1172         },
1173 
1174         jtreg: {
1175             server: "jpg",
1176             product: "jtreg",
1177             version: "8.3",
1178             build_number: "1",
1179             file: "bundles/jtreg-8.3+1.zip",
1180             environment_name: "JT_HOME",
1181             environment_path: input.get("jtreg", "home_path") + "/bin",
1182             configure_args: "--with-jtreg=" + input.get("jtreg", "home_path"),
1183         },
1184 
1185         jmh: {
1186             organization: common.organization,
1187             ext: "tar.gz",
1188             revision: "1.37+1.0"
1189         },
1190 
1191         jcov: {
1192             server: "jpg",
1193             product: "jcov",
1194             version: "3.0",
1195             build_number: "6",
1196             file: "bundles/jcov-3.0+6.zip",
1197             environment_name: "JCOV_HOME",
1198         },
1199 
< prev index next >