Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-UDR
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-UDR
Commits
6f7bae85
Commit
6f7bae85
authored
Jul 01, 2021
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ci): better reporting pattern checks
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
b6b7c144
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
ci-scripts/generateHtmlReport.py
ci-scripts/generateHtmlReport.py
+11
-9
No files found.
ci-scripts/generateHtmlReport.py
View file @
6f7bae85
...
...
@@ -487,24 +487,26 @@ class HtmlReport():
result
=
re
.
search
(
'UDR deps installation successful'
,
line
)
if
result
is
not
None
:
status
=
True
result
=
re
.
search
(
'
Install spdlog from https://github.com/gabime/spdlog.git
'
,
line
)
result
=
re
.
search
(
'
distro libs installation complete
'
,
line
)
if
result
is
not
None
:
package_install
=
True
spdlog_build_start
=
True
result
=
re
.
search
(
'Branch
\'
master
\'
set up to track remote branch
\'
master
\'
from
\'
origin
\'
'
,
line
)
result
=
re
.
search
(
'Starting to install spdlog'
,
line
)
if
result
is
not
None
:
spdlog_build_start
=
True
result
=
re
.
search
(
'spdlog installation complete'
,
line
)
if
result
is
not
None
and
spdlog_build_start
:
spdlog_build_status
=
True
result
=
re
.
search
(
'
Install Pistache from
'
,
line
)
result
=
re
.
search
(
'
Starting to install pistache
'
,
line
)
if
result
is
not
None
:
pistache_build_start
=
True
result
=
re
.
search
(
'
Installing: /usr/local/lib/libpistache.a
'
,
line
)
if
result
is
not
None
:
result
=
re
.
search
(
'
pistache installation complete
'
,
line
)
if
result
is
not
None
and
pistache_build_start
:
pistache_build_status
=
True
result
=
re
.
search
(
'
I
nstall Nlohmann Json'
,
line
)
result
=
re
.
search
(
'
Starting to i
nstall Nlohmann Json'
,
line
)
if
result
is
not
None
:
json_build_status
=
True
result
=
re
.
search
(
'
Installing: /usr/local/lib/cmake/nlohmann_json/nlohmann_jsonTargets.cmak
e'
,
line
)
if
result
is
not
None
:
result
=
re
.
search
(
'
Nlohmann Json installation complet
e'
,
line
)
if
result
is
not
None
and
json_build_status
:
json_build_status
=
True
logfile
.
close
()
if
base_image
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment