X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=scripts%2Fjjb-init-project.py;h=64b58210731b60bd8dd0124a8f909c6bb78b4a55;hb=965e106adb68e4f9965c65a3ce6a83cfda7a123e;hp=a7143aa77540bd3e78426597bb52c011be8af9f2;hpb=b5a057dab3f06ba9922a58c4ecf4aaa3e22cbe8a;p=releng%2Fbuilder.git diff --git a/scripts/jjb-init-project.py b/scripts/jjb-init-project.py index a7143aa77..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 @@ -69,7 +71,7 @@ if cfg.get("STREAMS"): # this is a list of single-key dicts for stream_dict in cfg.get("STREAMS"): streams.update(stream_dict) else: - streams = {"beryllium": jjblib.STREAM_DEFAULTS["beryllium"]} + streams = {"boron": jjblib.STREAM_DEFAULTS["boron"]} first_stream = streams.iterkeys().next() # Keep master branch at top. sonar_branch = streams[first_stream]["branch"] @@ -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 # ###############