Updating the import for results from buildbot
This commit is contained in:
parent
5a3b589d62
commit
c2d22ba6ab
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
# GDB .sum-fetching command.
|
# GDB .sum-fetching command.
|
||||||
|
|
||||||
from buildbot.status.builder import SUCCESS, WARNINGS, FAILURE, EXCEPTION
|
from buildbot.process.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION
|
||||||
from buildbot.steps.shell import ShellCommand
|
from buildbot.steps.shell import ShellCommand
|
||||||
from sumfiles import DejaResults, get_web_base
|
from sumfiles import DejaResults, get_web_base
|
||||||
from gdbgitdb import switch_to_branch
|
from gdbgitdb import switch_to_branch
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# DB-like with git
|
# DB-like with git
|
||||||
|
|
||||||
from buildbot.status.builder import SUCCESS, WARNINGS, FAILURE, EXCEPTION
|
from buildbot.process.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION
|
||||||
from buildbot.steps.shell import ShellCommand
|
from buildbot.steps.shell import ShellCommand
|
||||||
from sumfiles import get_web_base
|
from sumfiles import get_web_base
|
||||||
import os.path
|
import os.path
|
||||||
|
|
|
@ -23,7 +23,7 @@ from buildbot.steps.source.git import Git
|
||||||
from buildbot.steps.slave import RemoveDirectory
|
from buildbot.steps.slave import RemoveDirectory
|
||||||
from buildbot.changes.filter import ChangeFilter
|
from buildbot.changes.filter import ChangeFilter
|
||||||
from buildbot.buildslave import BuildSlave
|
from buildbot.buildslave import BuildSlave
|
||||||
from buildbot.status.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION
|
from buildbot.process.results import SUCCESS, WARNINGS, FAILURE, EXCEPTION
|
||||||
from gdbcommand import CopyOldGDBSumFile, GdbCatSumfileCommand
|
from gdbcommand import CopyOldGDBSumFile, GdbCatSumfileCommand
|
||||||
from gdbgitdb import SaveGDBResults, get_builder_commit_id
|
from gdbgitdb import SaveGDBResults, get_builder_commit_id
|
||||||
from urllib import quote
|
from urllib import quote
|
||||||
|
|
Loading…
Reference in a new issue