make/conf/jib-profiles.js
changeset 52415 bc4246eb76c4
parent 52393 ff10f8f3a583
child 52443 bec2391579f8
equal deleted inserted replaced
52414:6d42c07ba238 52415:bc4246eb76c4
   199     data.configuration_configure_arg = "--with-conf-name=";
   199     data.configuration_configure_arg = "--with-conf-name=";
   200     // The make argument to use to specify the name of the configuration
   200     // The make argument to use to specify the name of the configuration
   201     data.configuration_make_arg = "CONF_NAME=";
   201     data.configuration_make_arg = "CONF_NAME=";
   202 
   202 
   203     // Exclude list to use when Jib creates a source bundle
   203     // Exclude list to use when Jib creates a source bundle
   204     data.src_bundle_excludes = "./build .build webrev* */webrev* */*/webrev* */*/*/webrev* .hg */.hg */*/.hg */*/*/.hg";
   204     data.src_bundle_excludes = [
       
   205         "build", "{,**/}webrev*", "{,**/}.hg", "{,**/}JTwork", "{,**/}JTreport",
       
   206         "{,**/}.git"
       
   207     ];
   205     // Include list to use when creating a minimal jib source bundle which
   208     // Include list to use when creating a minimal jib source bundle which
   206     // contains just the jib configuration files.
   209     // contains just the jib configuration files.
   207     data.conf_bundle_includes = "*/conf/jib-profiles.* make/autoconf/version-numbers"
   210     data.conf_bundle_includes = [
       
   211         "make/autoconf/version-numbers",
       
   212     ];
   208 
   213 
   209     // Define some common values
   214     // Define some common values
   210     var common = getJibProfilesCommon(input, data);
   215     var common = getJibProfilesCommon(input, data);
   211     // Generate the profiles part of the configuration
   216     // Generate the profiles part of the configuration
   212     data.profiles = getJibProfilesProfiles(input, common, data);
   217     data.profiles = getJibProfilesProfiles(input, common, data);