+ jaguarTask = Task(
+ Job("whopper.23",
+ "distrib/all/build-osx", [config.OSX_HOST_jaguar, "jaguar", "2.3"], env=config_env) )
+
+ pantherTask = Task(
+ [ Job("bigmac.23",
+ "distrib/all/build-osx", [config.OSX_HOST_panther, "panther", "2.3"], env=config_env),
+ Job("bigmac.24",
+ "distrib/all/build-osx", [config.OSX_HOST_panther, "panther", "2.4"], env=config_env)
+ ])
+
+ beastTask1 = Task(
+ [ Job("beast.23", "distrib/all/build-windows", ["2.3"], env=config_env),
+ Job("co-rh9.23", ["distrib/all/build-rpm", CFGFILE, "beast", "co-rh9", "rh9", "2.3"]),
+ Job("beast.24", "distrib/all/build-windows", ["2.4"], env=config_env),
+ Job("co-rh9.24", ["distrib/all/build-rpm", CFGFILE, "beast", "co-rh9", "rh9", "2.4"]),
+ ])
+
+ beastTask2 = Task(
+ [ Job("co-fc2.23", ["distrib/all/build-rpm", CFGFILE, "beast", "co-fc2", "fc2", "2.3"]),
+ #Job("co-mdk101.23", ["distrib/all/build-rpm", CFGFILE, "beast", "co-mdk101","mdk101","2.3"]),
+ Job("co-fc4.24", ["distrib/all/build-rpm", CFGFILE, "beast", "co-fc4", "fc4", "2.4"]),
+ #Job("co-fc2.24", ["distrib/all/build-rpm", CFGFILE, "beast", "co-fc2", "fc2", "2.4"]),
+ Job("co-mdk102.24", ["distrib/all/build-rpm", CFGFILE, "beast", "co-mdk102","mdk102","2.4"]),
+ ])
+
+## cyclopsTask = Task(
+## [ Job("co-mdk92.23", "distrib/all/build-rpm", ["cyclops", "co-mdk92", "mdk92", "2.3"], env=config_env),
+## Job("co-rh9.23", "distrib/all/build-rpm", ["cyclops", "co-rh9", "rh9", "2.3"], env=config_env),
+## Job("co-mdk92.24", "distrib/all/build-rpm", ["cyclops", "co-mdk92", "mdk92", "2.4"], env=config_env),
+## Job("co-rh9.24", "distrib/all/build-rpm", ["cyclops", "co-rh9", "rh9", "2.4"], env=config_env),
+## ])
+
+ buildTasks = [ jaguarTask,
+ pantherTask,
+ beastTask1,
+ beastTask2,
+## cyclopsTask,
+ ]
+
+ # Finalization. This is for things that must wait until all the
+ # builds are done, such as copying the installers someplace, sending
+ # emails, etc.
+ finalizationTask = Task( Job("", "distrib/all/build-finalize", env=config_env) )
+
+ return initialTask, buildTasks, finalizationTask
+
+
+#----------------------------------------------------------------------
+
+def usage():
+ print ""
+ print "Usage: build-all [command flags...]"
+ print ""
+ print "build types:"
+ print " dryrun Do the build, but don't copy anywhere (default)"
+ print " daily Do a daily build, copy to starship"
+ print " release Do a normal release (cantidate) build, copy to starship"
+ print ""
+ print "optional command flags:"
+ print " skipsource Don't build the source archives, use the ones"
+ print " already in the staging dir."
+ print " onlysource Exit after building the source and docs archives"
+ print " skipdocs Don't rebuild the docs"
+ print " skipwin Don't do the remote Windows build"
+ print " skiposx Don't do the remote OSX build"
+ print " skiplinux Don't do the remote Linux build"
+ print " skipclean Don't do the cleanup step on the remote builds"
+ print " skipupload Don't upload the builds to starship"
+ print ""
+ print " nocohost Don't start the coLinux sessions if they are"
+ print " not already online"
+ print ""