Merge pull request #12520 from nicolasnoble/buildgen-bubble-break

Adding --base to generate_projects.py - part 2
pull/12452/head
Nicolas Noble 7 years ago committed by GitHub
commit cbe9383993
  1. 2
      tools/buildgen/generate_projects.py

@ -85,7 +85,7 @@ for template in reversed(sorted(templates)):
test[out] = tf[1] test[out] = tf[1]
os.close(tf[0]) os.close(tf[0])
cmd.append(test[out]) cmd.append(test[out])
cmd.append(root + '/' + f) cmd.append(args.base + '/' + root + '/' + f)
jobs.append(jobset.JobSpec(cmd, shortname=out, timeout_seconds=None)) jobs.append(jobset.JobSpec(cmd, shortname=out, timeout_seconds=None))
jobset.run(pre_jobs, maxjobs=args.jobs) jobset.run(pre_jobs, maxjobs=args.jobs)

Loading…
Cancel
Save