Commit cee39e38 authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): take the most recent image size

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 19768925
......@@ -805,10 +805,10 @@ class HtmlReport():
if section_status:
if nfType == 'UDR':
if self.git_pull_request:
result = re.search('oai-udr *ci-tmp', line)
result = re.search('oai-udr *ci-tmp ', line)
else:
result = re.search('oai-udr *develop', line)
if result is not None:
result = re.search('oai-udr *develop ', line)
if result is not None and not status:
if variant == 'docker':
result = re.search('ago *([0-9A-Z]+)', line)
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment