Add 'stable/lithium' jobs to lispflowmapping
[releng/builder.git] / scripts / jjb-init-project.py
index 741560ddcda7eba4634f9143e45be5c4c385acf7..391ba72eba89a148803ef8a21e161ee19336e595 100644 (file)
@@ -27,7 +27,11 @@ parser.add_argument("-d", "--dependencies",
                           "will trigger when a dependent project-merge job "
                           "is built successfully.\n\n"
                           "Example: aaa,controller,yangtools"))
+parser.add_argument("-t", "--templates", help="Job templates to use")
 parser.add_argument("-b", "--branches", help="Git Branches to build")
+parser.add_argument("-j", "--jdks", help="JDKs to build against (for verify jobs)")  # noqa
+parser.add_argument("-p", "--pom", help="Path to pom.xml to use in Maven build"
+                                        "(Default: pom.xml")
 parser.add_argument("-g", "--mvn-goals", help="Maven Goals")
 parser.add_argument("-o", "--mvn-opts", help="Maven Options")
 parser.add_argument("-a", "--archive-artifacts",
@@ -41,7 +45,10 @@ args = parser.parse_args()
 project = args.project
 project_dir = os.path.join("jjb", project)
 project_file = os.path.join(project_dir, "%s.yaml" % project)
+templates = args.templates  # Defaults to all templates
 branches = args.branches    # Defaults to "master,stable/helium" if not passed
+jdks = args.jdks            # Defaults to openjdk7
+pom = args.pom              # Defaults to pom.xml
 mvn_goals = args.mvn_goals  # Defaults to "clean install" if not passsed
 mvn_opts = args.mvn_opts    # Defaults to blank if not passed
 dependencies = args.dependencies
@@ -50,8 +57,6 @@ disabled = "true"   # Always disabled unless project has dependencies
 email_prefix = "[%s]" % project
 archive_artifacts = args.archive_artifacts
 
-template_file = os.path.join("jjb", "job.yaml.template")
-
 # The below 2 variables are used to determine if we should generate a CFG file
 # for a project automatically.
 #
@@ -65,6 +70,13 @@ no_cfg = args.no_cfg
 make_cfg = False  # Set to true if we need to generate initial CFG file
 cfg_string = []
 
+if not templates:
+    templates = "verify,merge,daily,integration,sonar"
+else:
+    make_cfg = True
+    cfg_string.append("JOB_TEMPLATES: %s" % templates)
+templates += ",clm"  # ensure we always create a clm job for all projects
+
 if not branches:
     branches = "master,stable/helium"
     sonar_branch = "master"
@@ -81,6 +93,21 @@ for branch in branches.split(","):
                          (branch.replace('/', '-'),
                           branch))
 
+if not jdks:
+    jdks = "openjdk7"
+else:
+    make_cfg = True
+    cfg_string.append("JDKS: %s" % jdks)
+use_jdks = ""
+for jdk in jdks.split(","):
+    use_jdks += "                - %s\n" % jdk
+
+if not pom:
+    pom = "pom.xml"
+else:
+    make_cfg = True
+    cfg_string.append("POM: %s" % pom)
+
 if not mvn_goals:
     mvn_goals = ("clean install "
                  "-V "  # Show Maven / Java version before building
@@ -146,17 +173,36 @@ if not no_cfg and make_cfg:
         outstream.write(cfg)
 
 # Create initial project YAML file
-with open(template_file, "r") as infile:
-    with open(project_file, "w") as outfile:
-        for line in infile:
-            if not re.match("\s*#", line):
-                line = re.sub("PROJECT", project, line)
-                line = re.sub("DISABLED", disabled, line)
-                line = re.sub("STREAMS", streams, line)
-                line = re.sub("MAVEN_GOALS", mvn_goals, line)
-                line = re.sub("MAVEN_OPTS", mvn_opts, line)
-                line = re.sub("DEPENDENCIES", dependent_jobs, line)
-                line = re.sub("EMAIL_PREFIX", email_prefix, line)
-                line = re.sub("SONAR_BRANCH", sonar_branch, line)
-                line = re.sub("ARCHIVE_ARTIFACTS", archive_artifacts, line)
-            outfile.write(line)
+use_templates = templates.split(",")
+use_templates.insert(0, "project")
+job_templates_yaml = ""
+for t in use_templates:
+    if t == "project":  # This is not a job type but is used for templating
+        pass
+    elif t == "sonar" or t == "clm":
+        job_templates_yaml = job_templates_yaml + \
+            "        - '%s-%s'\n" % (project, t)
+    else:
+        job_templates_yaml = job_templates_yaml + \
+            "        - '%s-%s-{stream}'\n" % (project, t)
+
+with open(project_file, "w") as outfile:
+    for t in use_templates:
+        template_file = "jjb-templates/%s.yaml" % t
+        with open(template_file, "r") as infile:
+            for line in infile:
+                if not re.match("\s*#", line):
+                    line = re.sub("JOB_TEMPLATES", job_templates_yaml, line)
+                    line = re.sub("PROJECT", project, line)
+                    line = re.sub("DISABLED", disabled, line)
+                    line = re.sub("STREAMS", streams, line)
+                    line = re.sub("JDKS", use_jdks, line)
+                    line = re.sub("POM", pom, line)
+                    line = re.sub("MAVEN_GOALS", mvn_goals, line)
+                    line = re.sub("MAVEN_OPTS", mvn_opts, line)
+                    line = re.sub("DEPENDENCIES", dependent_jobs, line)
+                    line = re.sub("EMAIL_PREFIX", email_prefix, line)
+                    line = re.sub("SONAR_BRANCH", sonar_branch, line)
+                    line = re.sub("ARCHIVE_ARTIFACTS", archive_artifacts, line)
+                outfile.write(line)
+        outfile.write("\n")