Dmitri Gribenko said that it is ok to "add more (reasonably-sized) jobs to [his] buildbot" (http://lists.llvm.org/pipermail/openmp-dev/2016-March/001169.html)
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
The patch looks fine.
Except one strange thing with the category.
| buildbot/osuosl/master/config/builders.py | ||
|---|---|---|
| 822 ↗ | (On Diff #52996) | The category gets overwritten to 'openmp' in get_builders(). |
| buildbot/osuosl/master/config/builders.py | ||
|---|---|---|
| 822 ↗ | (On Diff #52996) | Looks like I did some copy&paste from the other configs. Will update the patch and remove the category from all related buildes |
| buildbot/osuosl/master/config/builders.py | ||
|---|---|---|
| 827 ↗ | (On Diff #54035) | The env value looks specific to a particular buildslave rather than the builder. Do you expect each of the slaves be setup exactly the same way, including the user account name and such? This is not a blocker for this patch, though. Just something that caught my eye. |
| zorg/buildbot/builders/Libiomp5Builder.py | ||
| 93 ↗ | (On Diff #54035) | Could you use the NinjaCommand from zorg.buildbot.commands.NinjaCommand instead, please? f.addStep(NinjaCommand(name="build_llgo",
targets=["FileCheck"],
haltOnFailure=True,
description=["make ompt test utils"],
workdir=llvm_builddir,
env=merged_env)) |
| 98 ↗ | (On Diff #54035) | You are missing ) here. |
| zorg/buildbot/builders/Libiomp5Builder.py | ||
|---|---|---|
| 93 ↗ | (On Diff #54164) | Can this be done in a separate patch? This should then be adjusted in the whole file... |