wscript (316B)
1 #! /usr/bin/env python 2 3 # execute several instances of the build in "compute" (look in the wscript over there) 4 5 def configure(conf): 6 pass 7 8 def build(bld): 9 p = bld.srcnode.find_node('compute').abspath() 10 11 bld.jobs = JOBS = 3 12 for i in range(JOBS): 13 bld(rule='waf configure build -o test%d'%i, cwd=p, always=True) 14