0

This question made me crazy!Please help me. I use the buildbot, VC tool is perforce 2010. Waterfall: ok but console view cannot work right. just print "No revisions available"

Peace
  • 11
  • 2

2 Answers2

2

If you are using the Periodic scheduler, then buildbot isn't made aware of the revisions in your repository, it just checks every time, and builds the most recent version. Since it doesn't know anything about revisions, it can't display anything sensible for the console view.

To get the console view, you need to tell buildbot about your revisions, either using buildbot.changes.p4poller.P4Source, buildbot send-change or contrib/post-build-request.py. And then trigger your builds using a regular scheduler, rather than a periodic one.

Tom Prince
  • 682
  • 3
  • 9
-1

It's probably something environmental in the configuration, such as the Perforce username or the Perforce client spec. The tool is probably issuing a 'changes' or 'sync' command, and since it's not using the workspace definition that you expect, it isn't finding any code in that workspace.

Bryan Pendleton
  • 16,128
  • 3
  • 32
  • 56