make/conf/jib-profiles.js
changeset 58846 f9ac726ab347
parent 58723 559c46cd0e8b
equal deleted inserted replaced
58845:e492513d3630 58846:f9ac726ab347
   245     ];
   245     ];
   246 
   246 
   247     // These are the base setttings for all the main build profiles.
   247     // These are the base setttings for all the main build profiles.
   248     common.main_profile_base = {
   248     common.main_profile_base = {
   249         dependencies: ["boot_jdk", "gnumake", "jtreg", "jib", "autoconf", "jmh", "jcov"],
   249         dependencies: ["boot_jdk", "gnumake", "jtreg", "jib", "autoconf", "jmh", "jcov"],
   250         default_make_targets: ["product-bundles", "test-bundles"],
   250         default_make_targets: ["product-bundles", "test-bundles", "static-libs-bundles"],
   251         configure_args: concat(["--enable-jtreg-failure-handler"],
   251         configure_args: concat(["--enable-jtreg-failure-handler"],
   252             "--with-exclude-translations=de,es,fr,it,ko,pt_BR,sv,ca,tr,cs,sk,ja_JP_A,ja_JP_HA,ja_JP_HI,ja_JP_I,zh_TW,zh_HK",
   252             "--with-exclude-translations=de,es,fr,it,ko,pt_BR,sv,ca,tr,cs,sk,ja_JP_A,ja_JP_HA,ja_JP_HI,ja_JP_I,zh_TW,zh_HK",
   253             "--disable-manpages",
   253             "--disable-manpages",
   254             "--with-jvm-features=-shenandoahgc",
   254             "--with-jvm-features=-shenandoahgc",
   255             versionArgs(input, common))
   255             versionArgs(input, common))
   318                         "bundles/" + pf + "/\\1"
   318                         "bundles/" + pf + "/\\1"
   319                     ],
   319                     ],
   320                     subdir: jdk_subdir,
   320                     subdir: jdk_subdir,
   321                     exploded: "images/jdk"
   321                     exploded: "images/jdk"
   322                 },
   322                 },
       
   323                 static_libs: {
       
   324                     local: "bundles/\\(jdk.*bin-static-libs.tar.gz\\)",
       
   325                     remote: [
       
   326                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-static-libs.tar.gz",
       
   327                         "bundles/" + pf + "/\\1"
       
   328                     ],
       
   329                     subdir: jdk_subdir,
       
   330                 },
   323             }
   331             }
   324         };
   332         };
   325     };
   333     };
   326 
   334 
   327 
   335 
   359                         "bundles/" + pf + "/\\1"
   367                         "bundles/" + pf + "/\\1"
   360                     ],
   368                     ],
   361                     subdir: jdk_subdir,
   369                     subdir: jdk_subdir,
   362                     exploded: "images/jdk"
   370                     exploded: "images/jdk"
   363                 },
   371                 },
       
   372                 static_libs: {
       
   373                     local: "bundles/\\(jdk.*bin-static-libs-debug.tar.gz\\)",
       
   374                     remote: [
       
   375                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-static-libs-debug.tar.gz",
       
   376                         "bundles/" + pf + "/\\1"
       
   377                     ],
       
   378                     subdir: jdk_subdir,
       
   379                 },
   364             }
   380             }
   365         };
   381         };
   366     };
   382     };
   367 
   383 
   368     common.boot_jdk_version = "13";
   384     common.boot_jdk_version = "13";