X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=scripts%2Fjjb-init-project.py;h=64b58210731b60bd8dd0124a8f909c6bb78b4a55;hb=50d93b109dc57822d6744c059101b2bf28a00dc4;hp=417049d3b4b505ffc2d7fc6dd50549ba2c1ab11b;hpb=63cd8a0950078061a56839afb25bb3b6caa150a1;p=releng%2Fbuilder.git diff --git a/scripts/jjb-init-project.py b/scripts/jjb-init-project.py index 417049d3b..64b582107 100644 --- a/scripts/jjb-init-project.py +++ b/scripts/jjb-init-project.py @@ -57,7 +57,9 @@ if os.path.isfile(project_conf): if cfg.get("JOB_TEMPLATES"): templates = cfg.get("JOB_TEMPLATES") else: - templates = "verify,merge,periodic,distribution,integration,sonar" + templates = ( + "verify,merge,periodic,distribution,distribution-check,integration," + "sonar") templates += ",clm" # ensure we always create a clm job for all projects templates += ",validate-autorelease" # Autorelease validate template @@ -91,6 +93,10 @@ for stream, options in streams.items(): str_streams += " disable_autorelease: %s\n" % (not options.get( "autorelease", False)) + # Disable the distribution-check job unless project enables it + str_streams += " disable_distribution_check: %s\n" % ( + not options.get("distribution-check", True)) + ############### # Handle JDKS # ###############