forked from alisw/ali-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.py
executable file
·171 lines (156 loc) · 5.99 KB
/
schedule.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#!/usr/bin/env python
#
# Helper script which given a alisw repository and a alisw.github.io decides
# which builds to schedule based on a set of rules found in config.yaml.
#
# Things are done this way so that the process of starting a new build is
# always expressed as moving from one state where some builds are missing to a
# state where all the builds that can be built are built. This is different
# from the past approach where people were asking for "please build a new
# release", this is more "build all releases which are missing".
#
# This script is meant to be executed by jenkins and will output a series of
# property files which can be to drive the actual builds.
import yaml
from argparse import ArgumentParser
from os.path import exists, basename
from os import makedirs, symlink, unlink
from sys import exit
from commands import getstatusoutput
import re
import logging
from logging import debug
from glob import glob
def format(s, **kwds):
return s % kwds
def dieIf(exitCode, msg, *args):
if exitCode:
print msg % args
exit(exitCode)
def decide_releases(done_tags, all_tags, rules):
to_be_processed = []
for tag in all_tags:
if tag in done_tags:
print "Tag %s was already processed. Skipping" % tag
continue
for rule in rules:
if "exclude" in rule:
m = re.match(rule["exclude"], tag)
if m:
debug("%s excluded by %s" % (tag, rule["exclude"]))
break
elif "include" in rule:
m = re.match(rule["include"], tag)
payload = {
"tag": tag,
"architecture": rule["architecture"],
"package": "aliroot",
"alidist": rule["alidist"],
"alibuild": rule["alibuild"],
"defaults": rule.get("defaults", "release")
}
if not m:
continue
if str(payload) in done_tags:
continue
to_be_processed.append(payload)
else:
dieIf(1, "Bad rule found. Exiting.")
return to_be_processed
# Extracts the previously scheduled packages from the git repository.
# This is done by parsing the filename which has the following structure:
#
# <package>[+<defaults>]-<architecture>-<tag>.ini
def extractTuples(name):
possible_archs = ["([^+]*)[+]?(.*)(slc.*_x86-64)-(.*)[.]ini",
"([^+]*)[+]?(.*)(ubt.*_x86-64)-(.*)[.]ini",
"([^+]*)[+]?(.*)(osx.*_x86-64)-(.*)[.]ini"]
for attempt in possible_archs:
m = re.match(attempt, name)
if not m:
continue
result = dict(zip(["package", "defaults", "architecture", "tag"], m.groups()))
if not result["package"]:
result["package"] = "aliroot"
if not result["defaults"]:
result["defaults"] = "release"
assert(result["package"])
assert(result["architecture"])
assert(result["tag"])
result["package"] = result.get("package", "aliroot").strip("-")
return result
if __name__ == "__main__":
logging.basicConfig()
debug("foo")
parser = ArgumentParser()
parser.add_argument("--aliroot-repo", dest="aliroot", help="Location of aliroot checkout area")
parser.add_argument("--alisw-repo", dest="alisw", help="Location of alisw.github.io checkout area")
parser.add_argument("--dry-run", "-n", action="store_true", dest="dryRun", default=False,
help="Just print out what you will do. Do not execute.")
args = parser.parse_args()
if not args.aliroot or not exists(args.aliroot):
parser.error("Please specify where to find aliroot")
if not args.alisw or not exists(args.alisw):
parser.error("Please specify where to find alisw.github.io")
cmd = format("(cd %(repo)s && git tag 2>&1)",
repo=args.aliroot)
err, out = getstatusoutput(cmd)
dieIf(err, "Unable to get ALIROOT tags\n%s", "\n".join(out.split("\n")[0:10]))
# There are three entries in the script:
#
# done_tags: the tags which have already been scheduled for build.
# all_tags: all the tags available
# rules: the rules which specify which tags need to be scheduled and using
# which version of the recipes.
done_tags = glob("%s/data/scheduled/*.ini" % args.alisw)
done_tags = set(str(extractTuples(basename(x))["tag"]) for x in done_tags)
all_tags = out.split("\n")
config = yaml.load(file("config.yaml"))
rules = config["release_rules"]
# Decide which releases need to be built.
specs = decide_releases(done_tags, all_tags, rules)
# Now we process the integration build part. We simply create the ini files
# for each one of them.
ibs = config["integration_rules"]
for ib in ibs:
payload = {
"tag": ib["branch"],
"architecture": ib["architecture"],
"package": ib["package"],
"alibuild": ib["alibuild"],
"alidist": ib["alidist"],
"defaults": ib.get("defaults", "release")
}
specs.append(payload)
if not specs:
print "No tags to be processed."
exit(0)
print "Tags to be scheduled:\n" + "\n".join(str(x) for x in specs)
if args.dryRun:
print "Dry run specified, not running."
# We create the spec in a subdirectory "specs", so that we can always know
# what were the options used to build a given release. We then copy them in
# the local area, so that jenkins can use it to schedule other jobs.
getstatusoutput("rm -fr *.ini")
for s in specs:
ini = format("ALIDIST_BRANCH=%(alidist)s\n"
"ALIBUILD_BRANCH=%(alibuild)s\n"
"ARCHITECTURE=%(architecture)s\n"
"OVERRIDE_TAGS=aliroot=%(tag)s\n"
"PACKAGE_NAME=%(package)s\n"
"DEFAULTS=%(defaults)s\n",
**s)
if args.dryRun:
print ini
continue
p = format("%(alisw)s/data/scheduled/%(package)s+%(defaults)s-%(architecture)s-%(tag)s.ini",
alisw=args.alisw,
architecture=s["architecture"],
defaults=s["defaults"],
package=s["package"],
tag=s["tag"])
getstatusoutput("mkdir -p %s/data/scheduled" % args.alisw)
f = file(p, "w")
f.write(ini)
f.close()
symlink(p, basename(p))