]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/all/build-all
return error code upon KeyboardInterrupt
[wxWidgets.git] / wxPython / distrib / all / build-all
CommitLineData
e4bb5998
RD
1#!/usr/bin/python
2#----------------------------------------------------------------------
3# Name: build-all.py
4# Purpose: Master build script for building all the installers and
5# such on all the build machines in my lab, and then
6# distributing the results as needed.
7#
8# This will replace the build-all bash script and is
9# needed because the needs of the build have outgrown
10# what I can do with bash.
11#
12# Author: Robin Dunn
13#
14# Created: 05-Nov-2004
15# RCS-ID: $Id$
16# Copyright: (c) 2004 by Total Control Software
17# Licence: wxWindows license
18#----------------------------------------------------------------------
19
20import sys
21import os
22import time
23from taskrunner import Job, Task, TaskRunner
24
25#----------------------------------------------------------------------
26# Configuration items
27
28class Config:
29 def write(self, filename="config", outfile=None):
30 if outfile is None:
31 f = file(filename, "w")
32 else:
33 f = outfile
34 for k, v in self.__dict__.items():
35 f.write('%s="%s"\n' % (k, v))
36
37config = Config()
36e91097
RD
38
39# the local spot that we put everything when done, before possibly copying
40# to remote hosts
e4bb5998 41config.STAGING_DIR = "./BUILD"
36e91097 42
36e91097 43
d6624155 44# host name of the machine to use for windows builds
e4bb5998 45config.WIN_HOST = "beast"
d6624155 46# Where is the build dir from the remote machine's perspective?
e4bb5998 47config.WIN_BUILD = "/c/BUILD"
36e91097
RD
48
49
d6624155 50# Just like the above
e4bb5998
RD
51config.OSX_HOST_panther = "bigmac"
52config.OSX_HOST_jaguar = "whopper"
53config.OSX_BUILD = "/BUILD"
36e91097
RD
54
55
afbe4a55 56# Alsmost the same... See below for hosts and other info
e4bb5998 57config.LINUX_BUILD = "/tmp/BUILD"
36e91097
RD
58
59
60# Upload server locations
e4bb5998
RD
61config.UPLOAD_HOST = "starship.python.net"
62config.UPLOAD_DAILY_ROOT = "/home/crew/robind/public_html/wxPython/daily"
63config.UPLOAD_PREVIEW_ROOT = "/home/crew/robind/public_html/wxPython/preview"
64
65# defaults for build options
66config.KIND = "dryrun"
67config.PYVER = "2.3"
68config.skipsource = "no"
69config.onlysource = "no"
70config.skipdocs = "no"
71config.skipwin = "no"
72config.skiposx = "no"
73config.skiplinux = "no"
74config.skipclean = "no"
75config.skipupload = "no"
76config.skipnewdocs = "no"
77
78
79#----------------------------------------------------------------------
80# Define all the build tasks
81
82class Job(Job):
83 LOGBASE = "./tmp"
84
85CFGFILE = "./tmp/config"
86
87
88# Things that need to be done before any of the builds
89initialTask = Task([ Job("", ["distrib/all/build-setup", CFGFILE]),
90 Job("", ["distrib/all/build-docs", CFGFILE]),
91 Job("", ["distrib/all/build-sources", CFGFILE]),
92 ])
93
94# Build tasks. Anything that can be done in parallel (depends greatly
95# on the nature of the build machine configurations...) is a separate
96# task.
97windowsTask = Task( Job("beast", ["distrib/all/build-windows", CFGFILE]) )
98
99jaguarTask = Task( Job(config.OSX_HOST_jaguar,
100 ["distrib/all/build-osx", CFGFILE, config.OSX_HOST_jaguar, "jaguar"]) )
101
102pantherTask = Task( Job(config.OSX_HOST_panther,
103 ["distrib/all/build-osx", CFGFILE, config.OSX_HOST_panther, "panther"]) )
104
df6dc8d0 105rpmTask = Task([ Job("co-rh9", ["distrib/all/build-rpm", CFGFILE, "beast", "co-rh9", "rh9", config.PYVER]),
e4bb5998 106 Job("co-fc2", ["distrib/all/build-rpm", CFGFILE, "beast", "co-fc2", "fc2", "2.3"]),
df6dc8d0
RD
107 Job("co-mdk92", ["distrib/all/build-rpm", CFGFILE, "beast", "co-mdk92", "mdk92", "2.3"]),
108 Job("co-mdk101", ["distrib/all/build-rpm", CFGFILE, "beast", "co-mdk101","mdk101","2.3"]),
e4bb5998
RD
109 ])
110
111buildTasks = [ windowsTask,
112 jaguarTask,
113 pantherTask,
114 rpmTask,
115 ]
116
117# Finalization. This is for things that must wait until all the
118# builds are done, such as copying the isntallers someplace, sending
119# emails, etc.
120finalizationTask = Task( Job("", ["distrib/all/build-finalize", CFGFILE]) )
121
122
123#----------------------------------------------------------------------
124
125def usage():
126 print ""
127 print "Usage: build-all [command flags...]"
128 print ""
129 print "build types:"
130 print " dryrun Do the build, but don't copy anywhere (default)"
131 print " daily Do a daily build, copy to starship"
132 print " release Do a normal release (cantidate) build, copy to starship"
133 print ""
134 print "optional command flags:"
135 print " 2.2 Build for Python 2.2 (default=off)"
136 print " 2.3 Build for Python 2.3 (default=on)"
137 print " all Build for all supported Python versions"
138 print ""
139 print " skipsource Don't build the source archives, use the ones"
140 print " already in the staging dir."
141 print " onlysource Exit after building the source and docs archives"
142 print " skipdocs Don't rebuild the docs"
143 print " skipwin Don't do the remote Windows build"
144 print " skiposx Don't do the remote OSX build"
145 print " skiplinux Don't do the remote Linux build"
146 print " skipclean Don't do the cleanup step on the remote builds"
147 print " skipupload Don't upload the builds to starship"
148 print ""
36e91097 149
36e91097 150
e4bb5998
RD
151#----------------------------------------------------------------------
152
153def main(args):
154 # Make sure we are running in the right directory. TODO: make
155 # this test more robust. Currenly we just test for the presence
156 # of 'wxPython' and 'wx' subdirs.
157 if not os.path.isdir("wxPython") or not os.path.isdir("wx"):
158 print "Please run this script from the root wxPython directory."
159 sys.exit(1)
160
161 # Check command line flags
162 for flag in args:
163 if flag in ["dryrun", "daily", "release"]:
164 config.KIND = flag
165
166 elif flag in ["2.2", "2.3"]:
167 config.PYVER = flag
168 elif flag == "all":
169 config.PYVER = "2.2 2.3"
170
171 elif flag == "skipsource":
172 config.skipsource = "yes"
173
174 elif flag == "onlysource":
175 config.onlysource = "yes"
176
177 elif flag == "skipdocs":
178 config.skipdocs = "yes"
179
180 elif flag == "skipnewdocs":
181 config.skipnewdocs = "yes"
182
183 elif flag == "skipwin":
184 config.skipwin = "yes"
185
186 elif flag == "skiposx":
187 config.skiposx = "yes"
188
189 elif flag == "skiplinux":
190 config.skiplinux = "yes"
191
192 elif flag == "skipclean":
193 config.skipclean = "yes"
194
195 elif flag == "skipupload":
196 config.skipupload = "yes"
197
198 else:
199 print 'Unknown flag: "%s"' % flag
200 usage()
201 sys.exit(2)
202
203
204 # ensure the staging area exists
205 if not os.path.exists(config.STAGING_DIR):
206 os.makedirs(config.STAGING_DIR)
207
208 # Figure out the wxPython version number, possibly adjusted for being a daily build
209 if config.KIND == "daily":
210 t = time.localtime()
211 config.DAILY = time.strftime("%Y%m%d") # should it include the hour too? 2-digit year?
212 file("DAILY_BUILD", "w").write(config.DAILY)
213 sys.path.append('.')
214 import setup
215 config.VERSION = setup.VERSION
216
217 # write the config file where the build scripts can find it
218 config.write(CFGFILE)
219 print "Build getting started at: ", time.ctime()
220
221
222 # Run the first task, which will create the docs and sources tarballs
223 tr = TaskRunner(initialTask)
224 rc = tr.run()
225
226 # cleanup the DAILY_BUILD file
227 if config.KIND == "daily":
228 os.unlink("DAILY_BUILD")
229
230 # Quit now?
231 if rc != 0 or config.onlysource == "yes":
232 sys.exit(rc)
233
234
235 # Run the main build tasks
236 tr = TaskRunner(buildTasks)
237 rc = tr.run()
238 if rc != 0:
239 sys.exit(rc)
240
241
242 # when all the builds are done, run the finalization task
243 tr = TaskRunner(finalizationTask)
244 rc = tr.run()
245 if rc != 0:
246 sys.exit(rc)
5df4dd4b 247
e4bb5998
RD
248
249 print "Build finished at: ", time.ctime()
250 sys.exit(0)
7dc107d6 251
7dc107d6 252
36e91097
RD
253
254
e4bb5998
RD
255if __name__ == "__main__":
256 main(sys.argv[1:])