wscript 316 B

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