Adding ability to build from different distribution 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, 2015 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 from collections import OrderedDict
17 import os
18 import re
19
20 import yaml
21
22 import jjblib
23
24
25 args = jjblib.parse_jjb_args()
26
27
28 project = jjblib.Project(args.project)
29 if project.meta_project is not None:
30     project_dir = os.path.join("jjb", project.meta_project, project.project)
31     jenkins_settings = "%s-%s-settings" % (project.meta_project,
32                                            project.project)
33 else:
34     project_dir = os.path.join("jjb", project.project)
35     jenkins_settings = "%s-settings" % project.project
36
37 project_file = os.path.join(project_dir, "%s.yaml" % project)
38 dependent_jobs = ""
39 disabled = "true"   # Always disabled unless project has dependencies
40 email_prefix = "[%s]" % project
41
42
43 if not args.conf:
44     jjblib.create_template_config(project_dir, args)
45     project_conf = os.path.join(project_dir, "%s.cfg" % args.project)
46 else:
47     project_conf = args.conf
48
49 cfg = dict()  # Needed to skip missing project.cfg files
50 if os.path.isfile(project_conf):
51     stream = open(project_conf, "r")
52     cfg = yaml.load(stream)
53
54 ####################
55 # Handle Templates #
56 ####################
57 if cfg.get("JOB_TEMPLATES"):
58     templates = cfg.get("JOB_TEMPLATES")
59 else:
60     templates = "verify,merge,daily,distribution,integration,sonar"
61 templates += ",clm"  # ensure we always create a clm job for all projects
62 templates += ",validate-autorelease"  # Autorelease validate template
63
64 ##################
65 # Handle Streams #
66 ##################
67 streams = OrderedDict()
68 if cfg.get("STREAMS"):  # this is a list of single-key dicts
69     for stream_dict in cfg.get("STREAMS"):
70         streams.update(stream_dict)
71 else:
72     streams = {"beryllium": jjblib.STREAM_DEFAULTS["beryllium"]}
73
74 first_stream = streams.iterkeys().next()  # Keep master branch at top.
75 sonar_branch = streams[first_stream]["branch"]
76 # Create YAML to list branches to create jobs for
77 str_streams = "stream:\n"
78 for stream, options in streams.items():
79     str_streams += ("        - %s:\n"
80                     "            branch: '%s'\n" %
81                     (stream, options["branch"]))
82     str_streams += "            jdk: %s\n" % options["jdks"].split(',')[0].strip()  # noqa
83     str_streams += "            jdks:\n"
84     for jdk in options["jdks"].split(","):
85         str_streams += "                - %s\n" % jdk.strip()
86
87     # Disable autorelease validate job unless project is participating
88     # in autorelease
89     str_streams += "            autorelease: %s\n" % options.get(
90         "autorelease", False)
91
92 ###############
93 # Handle JDKS #
94 ###############
95 if cfg.get('JDKS'):
96     jdks = cfg.get('JDKS')
97 else:
98     jdks = "openjdk7"
99 use_jdks = ""
100 for jdk in jdks.split(","):
101     use_jdks += "                - %s\n" % jdk
102
103 ##############
104 # Handle POM #
105 ##############
106 if cfg.get('POM'):
107     pom = cfg.get('POM')
108 else:
109     pom = "pom.xml"
110
111 ####################
112 # Handle MVN_GOALS #
113 ####################
114 if cfg.get('MVN_GOALS'):
115     mvn_goals = cfg.get('MVN_GOALS')
116 else:
117     mvn_goals = ("clean install "
118                  "-V "  # Show Maven / Java version before building
119                  "-Dmaven.repo.local=/tmp/r "
120                  "-Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r ")
121
122 ###################
123 # Handle MVN_OPTS #
124 ###################
125 if cfg.get('MVN_OPTS'):
126     mvn_opts = cfg.get('MVN_OPTS')
127 else:
128     mvn_opts = "-Xmx1024m -XX:MaxPermSize=256m"
129
130 #######################
131 # Handle DEPENDENCIES #
132 #######################
133 if cfg.get('DEPENDENCIES'):
134     dependencies = cfg.get('DEPENDENCIES')
135     if dependencies.find("odlparent") < 0:  # Add odlparent if not listed
136         dependencies = "odlparent," + dependencies
137     disabled = "false"
138 else:
139     dependencies = None
140     if project.project != "odlparent":  # Odlparent does not depend on itself
141         dependencies = "odlparent"  # All other projects depend on odlparent
142     disabled = "false"
143
144 if dependencies:
145     email_prefix = (email_prefix + " " +
146                 " ".join(['[%s]' % d for d in dependencies.split(",")]))  # noqa
147     dependent_jobs = ",".join(
148         ['%s-merge-{stream}' % d for d in dependencies.split(",")])
149
150 ############################
151 # Handle ARCHIVE_ARTIFACTS #
152 ############################
153 if cfg.get('ARCHIVE_ARTIFACTS'):
154     archive_artifacts = cfg.get('ARCHIVE_ARTIFACTS')
155     archive_artifacts = ("- archive-artifacts:\n"
156                          "            artifacts: '%s'" % archive_artifacts)
157 else:
158     archive_artifacts = ""
159
160
161 ##############################
162 # Create configuration start #
163 ##############################
164
165 # Create project directory if it doesn't exist
166 if not os.path.exists(project_dir):
167     os.makedirs(project_dir)
168
169 print("project: %s\n"
170       "streams: %s\n"
171       "goals: %s\n"
172       "options: %s\n"
173       "dependencies: %s\n"
174       "artifacts: %s" %
175       (project,
176        str_streams,
177        mvn_goals,
178        mvn_opts,
179        dependencies,
180        archive_artifacts,))
181
182 # Create initial project YAML file
183 use_templates = templates.split(",")
184 use_templates.insert(0, "project")
185 job_templates_yaml = ""
186 for t in use_templates:
187     if t == "project":  # This is not a job type but is used for templating
188         pass
189     elif t == "sonar":
190         job_templates_yaml = job_templates_yaml + \
191             "        - '%s-%s'\n" % (project, t)
192     else:
193         job_templates_yaml = job_templates_yaml + \
194             "        - '%s-%s-{stream}'\n" % (project, t)
195
196 with open(project_file, "w") as outfile:
197     for t in use_templates:
198         template_file = "jjb-templates/%s.yaml" % t
199         with open(template_file, "r") as infile:
200             for line in infile:
201                 if not re.match("\s*#", line):
202                     line = re.sub("JOB_TEMPLATES", job_templates_yaml, line)
203                     line = re.sub("PROJECT_SHORTNAME", project.project, line)
204                     line = re.sub("PROJECT_PATH", project.path, line)
205                     line = re.sub("JENKINS_SETTINGS", jenkins_settings, line)
206                     line = re.sub("DISABLED", disabled, line)
207                     line = re.sub("STREAMS", str_streams, line)
208                     line = re.sub("POM", pom, line)
209                     line = re.sub("MAVEN_GOALS", mvn_goals, line)
210                     line = re.sub("MAVEN_OPTS", mvn_opts, line)
211                     line = re.sub("DEPENDENCIES", dependent_jobs, line)
212                     line = re.sub("EMAIL_PREFIX", email_prefix, line)
213                     line = re.sub("SONAR_BRANCH", sonar_branch, line)
214                     line = re.sub("ARCHIVE_ARTIFACTS", archive_artifacts, line)
215                     # The previous command may have created superfluous lines.
216                     # If a line has no non-whitespace, it has to be '\n' only.
217                     line = re.sub(r'^\s+\n', "", line)
218                 outfile.write(line)
219         outfile.write("\n")