| Index: scripts/common/annotator.py
|
| diff --git a/scripts/common/annotator.py b/scripts/common/annotator.py
|
| index 445f54d5cb97e88f69319affba2f474767cb6606..fd4bf1b00ecdbc1a13798f5f0a19ac6d4d744657 100755
|
| --- a/scripts/common/annotator.py
|
| +++ b/scripts/common/annotator.py
|
| @@ -78,6 +78,9 @@ class StepCommands(object):
|
| def step_log_end_perf(self, logname, perf):
|
| self.emit('@@@STEP_LOG_END_PERF@%s@%s@@@' % (logname, perf))
|
|
|
| + def step_link(self, label, url):
|
| + self.emit('@@@STEP_LINK@%s@%s@@@' % (label, url))
|
| +
|
| def write_log_lines(self, logname, lines, perf=None):
|
| if logname in self.emitted_logs:
|
| raise ValueError('Log %s has been emitted multiple times.' % logname)
|
|
|