]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/all/build-all
   2 #---------------------------------------------------------------------- 
   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. 
   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. 
  14 # Created:     05-Nov-2004 
  16 # Copyright:   (c) 2004 by Total Control Software 
  17 # Licence:     wxWindows license 
  18 #---------------------------------------------------------------------- 
  23 from taskrunner 
import Job
, Task
, TaskRunner
 
  25 #---------------------------------------------------------------------- 
  29     def write(self
, filename
="config", outfile
=None): 
  31             f 
= file(filename
, "w") 
  34         for k
, v 
in self
.__dict
__.items(): 
  35             f
.write('%s="%s"\n' % (k
, v
)) 
  39 # the local spot that we put everything when done, before possibly copying  
  41 config
.STAGING_DIR 
= "./BUILD" 
  44 # host name of the machine to use for windows builds 
  45 config
.WIN_HOST 
= "beast" 
  46 # Where is the build dir from the remote machine's perspective? 
  47 config
.WIN_BUILD 
= "/c/BUILD" 
  51 config
.OSX_HOST_panther 
= "bigmac" 
  52 config
.OSX_HOST_jaguar 
= "whopper" 
  53 config
.OSX_BUILD 
= "/BUILD" 
  56 # Alsmost the same...  See below for hosts and other info 
  57 config
.LINUX_BUILD 
= "/tmp/BUILD" 
  60 # Upload server locations 
  61 config
.UPLOAD_HOST 
= "starship.python.net" 
  62 config
.UPLOAD_DAILY_ROOT 
= "/home/crew/robind/public_html/wxPython/daily" 
  63 config
.UPLOAD_PREVIEW_ROOT 
= "/home/crew/robind/public_html/wxPython/rc" 
  65 # defaults for build options 
  66 config
.KIND 
= "dryrun" 
  67 config
.skipsource 
= "no" 
  68 config
.onlysource 
= "no" 
  69 config
.skipdocs 
= "no" 
  72 config
.skiplinux 
= "no" 
  73 config
.skipclean 
= "no" 
  74 config
.skipupload 
= "no" 
  75 config
.skipnewdocs 
= "no" 
  76 config
.startcohost 
= "yes" 
  78 #---------------------------------------------------------------------- 
  79 # Define all the build tasks 
  84 CFGFILE 
= "./tmp/config" 
  87 # Things that need to be done before any of the builds 
  88 initialTask 
= Task([ Job("", ["distrib/all/build-setup", CFGFILE
]), 
  89                      Job("", ["distrib/all/build-docs", CFGFILE
]), 
  90                      Job("", ["distrib/all/build-sources", CFGFILE
]), 
  93 # Build tasks.  Anything that can be done in parallel (depends greatly 
  94 # on the nature of the build machines configurations...) is a separate 
  97 jaguarTask 
=  Task( Job("whopper.23", 
  98                         ["distrib/all/build-osx", CFGFILE
, config
.OSX_HOST_jaguar
, "jaguar", "2.3"]) ) 
 100 pantherTask 
=  Task([ Job("bigmac.23",  
 101                           ["distrib/all/build-osx", CFGFILE
, config
.OSX_HOST_panther
, "panther", "2.3"]), 
 103                           ["distrib/all/build-osx", CFGFILE
, config
.OSX_HOST_panther
, "panther", "2.4"]) 
 106 beastTask1 
= Task([ Job("beast.23",     ["distrib/all/build-windows", CFGFILE
, "2.3"]), 
 107                     Job("beast.24",     ["distrib/all/build-windows", CFGFILE
, "2.4"]), 
 110 beastTask2 
= Task([ Job("co-mdk101.23", ["distrib/all/build-rpm", CFGFILE
, "beast", "co-mdk101","mdk101","2.3"]), 
 111                     Job("co-fc2.23",    ["distrib/all/build-rpm", CFGFILE
, "beast", "co-fc2",   "fc2",   "2.3"]), 
 112                     Job("co-mdk101.24", ["distrib/all/build-rpm", CFGFILE
, "beast", "co-mdk101","mdk101","2.4"]), 
 113                     Job("co-fc2.24",    ["distrib/all/build-rpm", CFGFILE
, "beast", "co-fc2",   "fc2",   "2.4"]), 
 116 cyclopsTask 
= Task([ Job("co-rh9.23",    ["distrib/all/build-rpm", CFGFILE
, "cyclops", "co-rh9",   "rh9",   "2.3"]), 
 117                      Job("co-mdk92.23",  ["distrib/all/build-rpm", CFGFILE
, "cyclops", "co-mdk92", "mdk92", "2.3"]), 
 118                      Job("co-rh9.24",    ["distrib/all/build-rpm", CFGFILE
, "cyclops", "co-rh9",   "rh9",   "2.4"]), 
 119                      Job("co-mdk92.24",  ["distrib/all/build-rpm", CFGFILE
, "cyclops", "co-mdk92", "mdk92", "2.4"]), 
 122 buildTasks 
= [ jaguarTask
, 
 129 # Finalization.  This is for things that must wait until all the 
 130 # builds are done, such as copying the installers someplace, sending 
 132 finalizationTask 
= Task( Job("", ["distrib/all/build-finalize", CFGFILE
]) ) 
 135 #---------------------------------------------------------------------- 
 139     print "Usage: build-all [command flags...]" 
 142     print "   dryrun       Do the build, but don't copy anywhere (default)" 
 143     print "   daily        Do a daily build, copy to starship" 
 144     print "   release      Do a normal release (cantidate) build, copy to starship" 
 146     print "optional command flags:" 
 147     print "   skipsource   Don't build the source archives, use the ones" 
 148     print "                already in the staging dir." 
 149     print "   onlysource   Exit after building the source and docs archives" 
 150     print "   skipdocs     Don't rebuild the docs" 
 151     print "   skipwin      Don't do the remote Windows build" 
 152     print "   skiposx      Don't do the remote OSX build" 
 153     print "   skiplinux    Don't do the remote Linux build" 
 154     print "   skipclean    Don't do the cleanup step on the remote builds" 
 155     print "   skipupload   Don't upload the builds to starship" 
 157     print "   nocohost     Don't start the coLinux sessions if they are" 
 158     print "                not already online" 
 162 #---------------------------------------------------------------------- 
 165     # Make sure we are running in the right directory.  TODO: make 
 166     # this test more robust.  Currenly we just test for the presence 
 167     # of 'wxPython' and 'wx' subdirs. 
 168     if not os
.path
.isdir("wxPython") or not os
.path
.isdir("wx"): 
 169         print "Please run this script from the root wxPython directory." 
 172     # Check command line flags 
 174         if flag 
in ["dryrun", "daily", "release"]: 
 177         elif flag 
== "skipsource": 
 178             config
.skipsource 
= "yes" 
 180         elif flag 
== "onlysource": 
 181             config
.onlysource 
= "yes" 
 183         elif flag 
== "skipdocs": 
 184             config
.skipdocs 
= "yes" 
 186         elif flag 
== "skipnewdocs": 
 187             config
.skipnewdocs 
= "yes" 
 189         elif flag 
== "skipwin": 
 190             config
.skipwin 
= "yes" 
 192         elif flag 
== "skiposx": 
 193             config
.skiposx 
= "yes" 
 195         elif flag 
== "skiplinux": 
 196             config
.skiplinux 
= "yes" 
 198         elif flag 
== "skipclean": 
 199             config
.skipclean 
= "yes" 
 201         elif flag 
== "skipupload": 
 202             config
.skipupload 
= "yes" 
 204         elif flag 
== "nocohost": 
 205             config
.startcohost 
= "no" 
 208             print 'Unknown flag: "%s"' % flag
 
 213     # ensure the staging area exists 
 214     if not os
.path
.exists(config
.STAGING_DIR
): 
 215         os
.makedirs(config
.STAGING_DIR
) 
 217     # Figure out the wxPython version number, possibly adjusted for being a daily build 
 218     if config
.KIND 
== "daily": 
 220         config
.DAILY 
= time
.strftime("%Y%m%d")   # should it include the hour too?  2-digit year? 
 221         file("DAILY_BUILD", "w").write(config
.DAILY
) 
 224     config
.VERSION 
= setup
.VERSION
 
 226     # write the config file where the build scripts can find it 
 227     config
.write(CFGFILE
) 
 228     print "Build getting started at: ", time
.ctime() 
 231     # Run the first task, which will create the docs and sources tarballs 
 232     tr 
= TaskRunner(initialTask
) 
 235     # cleanup the DAILY_BUILD file 
 236     if config
.KIND 
== "daily": 
 237         os
.unlink("DAILY_BUILD") 
 240     if rc 
!= 0 or config
.onlysource 
== "yes": 
 244     # Run the main build tasks 
 245     tr 
= TaskRunner(buildTasks
) 
 251     # when all the builds are done, run the finalization task 
 252     tr 
= TaskRunner(finalizationTask
) 
 258     print "Build finished at: ", time
.ctime() 
 264 if __name__ 
== "__main__":