Merge "jjb-init-project script support for branches"
[releng/builder.git] / scripts / jjb-init-project.py
1 #!/usr/bin/python
2
3 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
4 ##############################################################################
5 # Copyright (c) 2014 The Linux Foundation and others.
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are made available under the terms of the Eclipse Public License v1.0
9 # which accompanies this distribution, and is available at
10 # http://www.eclipse.org/legal/epl-v10.html
11 #
12 # Contributors:
13 #   Thanh Ha (The Linux Foundation) - Initial implementation
14 ##############################################################################
15
16 import argparse
17 import os
18 import re
19
20 parser = argparse.ArgumentParser()
21 parser.add_argument("project", help="project")
22 parser.add_argument("-d", "--dependencies",
23                     help=("Project dependencies\n\n"
24                           "A comma-seperated (no spaces) list of projects "
25                           "your project depends on. "
26                           "This is used to create an integration job that "
27                           "will trigger when a dependent project-merge job "
28                           "is built successfully.\n\n"
29                           "Example: aaa,controller,yangtools"))
30 parser.add_argument("-b", "--branches", help="Git Branches to build")
31 parser.add_argument("-g", "--mvn-goals", help="Maven Goals")
32 parser.add_argument("-o", "--mvn-opts", help="Maven Options")
33 parser.add_argument("-z", "--no-cfg", action="store_true",
34                     help=("Disable initializing the project.cfg file."))
35 args = parser.parse_args()
36
37 project = args.project
38 project_dir = os.path.join("jjb", project)
39 project_file = os.path.join(project_dir, "%s.yaml" % project)
40 branches = args.branches    # Defaults to "master,stable/helium" if not passed
41 mvn_goals = args.mvn_goals  # Defaults to "clean install" if not passsed
42 mvn_opts = args.mvn_opts    # Defaults to blank if not passed
43 dependencies = args.dependencies
44 dependent_jobs = ""
45 disabled = "true"   # Always disabled unless project has dependencies
46 email_prefix = "[%s]" % project
47
48 template_file = os.path.join("jjb", "job.yaml.template")
49
50 # The below 2 variables are used to determine if we should generate a CFG file
51 # for a project automatically.
52 #
53 # no_cfg - is a commandline parameter that can be used by scripts such as the
54 #          jjb-autoupdate-project script to explicitly disable generating CFG
55 #          files.
56 # make_cfg - is a internal variable used to decide if we should try to
57 #            auto generate the CFG file for a project based on optional
58 #            variables passed by the user on the commandline.
59 no_cfg = args.no_cfg
60 make_cfg = False  # Set to true if we need to generate initial CFG file
61 cfg_string = []
62
63 if not branches:
64     branches = "master,stable/helium"
65 else:
66     make_cfg = True
67     cfg_string.append("BRANCHES: %s" % branches)
68 # Create YAML to list branches to create jobs for
69 streams = "stream:\n"
70 for branch in branches.split(","):
71     streams = streams + ("        - %s:\n"
72                          "            branch: '%s'\n" %
73                          (branch.replace('/', '-'),
74                           branch))
75
76 if not mvn_goals:
77     mvn_goals = ("clean install "
78                  "-V "  # Show Maven / Java version before building
79                  "-Dmaven.repo.local=$WORKSPACE/.m2repo "
80                  "-Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo ")
81 else:  # User explicitly set MAVEN_OPTS so create CFG
82     make_cfg = True
83     cfg_string.append("MAVEN_GOALS: %s" % mvn_goals)
84
85 if not mvn_opts:
86     mvn_opts = "-Xmx1024m -XX:MaxPermSize=256m"
87 else:  # User explicitly set MAVEN_OPTS so create CFG
88     make_cfg = True
89     cfg_string.append("MAVEN_OPTS: %s" % mvn_opts)
90
91 if dependencies:
92     make_cfg = True
93     disabled = "false"
94     email_prefix = (email_prefix + " " +
95                     " ".join(['[%s]' % d for d in dependencies.split(",")]))
96     dependent_jobs = ",".join(
97         ['%s-merge-{stream}' % d for d in dependencies.split(",")])
98     cfg_string.append("DEPENDENCIES: %s" % dependencies)
99
100 # Create project directory if it doesn't exist
101 if not os.path.exists(project_dir):
102     os.makedirs(project_dir)
103
104 print("project: %s\n"
105       "branches: %s\n"
106       "goals: %s\n"
107       "options: %s\n"
108       "dependencies: %s" %
109       (project,
110        branches,
111        mvn_goals,
112        mvn_opts,
113        dependencies))
114
115 # Create initial project CFG file
116 if not no_cfg and make_cfg:
117     print("Creating %s.cfg file" % project)
118     cfg_file = os.path.join(project_dir, "%s.cfg" % project)
119     with open(cfg_file, "w") as outstream:
120         cfg = "\n".join(cfg_string)
121         outstream.write(cfg)
122
123 # Create initial project YAML file
124 with open(template_file, "r") as infile:
125     with open(project_file, "w") as outfile:
126         for line in infile:
127             if not re.match("\s*#", line):
128                 line = re.sub("PROJECT", project, line)
129                 line = re.sub("DISABLED", disabled, line)
130                 line = re.sub("STREAMS", streams, line)
131                 line = re.sub("MAVEN_GOALS", mvn_goals, line)
132                 line = re.sub("MAVEN_OPTS", mvn_opts, line)
133                 line = re.sub("DEPENDENCIES", dependent_jobs, line)
134                 line = re.sub("EMAIL_PREFIX", email_prefix, line)
135             outfile.write(line)