Details
Diff Detail
Event Timeline
check-libgo will also fail because the tests for regexp and runtime/pprof are currently failing. Maybe we can find some way to run the tests for every package except those two to make sure we don't regress?
Yes, I'll propose another change that removes those packages from TEST_PACKAGES in the libgo Makefile.
Thanks for working on this, Andrew!
You may want to consider clean builds as well as incremental builds supported now.
In this case, you would need to support at least a 'clean' property and add a step to remove the llvm_objdir with all the content if the property is set (by using the doStepIf param). This is not a show stopper for this patch, though.
zorg/buildbot/builders/LLGoBuilder.py | ||
---|---|---|
25 | You import from buildbot.steps.shell, why not import SetProperty there as well? | |
66 | Could you use NinjaCommand instead of direct invoking ShellCommand with "ninja" here and below, please? |
Address review comments on LLGoBuilder
- Tidy up imports
- Add clean build option, now default
- Use NinjaCommand
You import from buildbot.steps.shell, why not import SetProperty there as well?