Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
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-SMF
Commits
a9ed89a3
Commit
a9ed89a3
authored
Mar 24, 2021
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-rhel8-image-build' into 'develop'
Fix rhel8 image build See merge request oai/cn5g/oai-cn5g-smf!56
parents
84a148a0
7ae003ec
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
build/scripts/build_helper.fb_folly
build/scripts/build_helper.fb_folly
+3
-0
build/scripts/build_helper.smf
build/scripts/build_helper.smf
+2
-0
ci-scripts/generateHtmlReport.py
ci-scripts/generateHtmlReport.py
+8
-2
No files found.
build/scripts/build_helper.fb_folly
View file @
a9ed89a3
...
@@ -49,6 +49,9 @@ install_fb_folly_from_source(){
...
@@ -49,6 +49,9 @@ install_fb_folly_from_source(){
then
then
if [[ "$OS_BASEDISTRO" == "fedora" ]]; then
if [[ "$OS_BASEDISTRO" == "fedora" ]]; then
$SUDO $INSTALLER install $OPTION \
$SUDO $INSTALLER install $OPTION \
gcc-c++ \
$CMAKE \
make \
boost-devel \
boost-devel \
libevent-devel \
libevent-devel \
double-conversion-devel \
double-conversion-devel \
...
...
build/scripts/build_helper.smf
View file @
a9ed89a3
...
@@ -242,6 +242,8 @@ install_nghttp2_from_git() {
...
@@ -242,6 +242,8 @@ install_nghttp2_from_git() {
binutils-devel \
binutils-devel \
autoconf \
autoconf \
automake \
automake \
$CMAKE \
make \
libtool \
libtool \
pkg-config \
pkg-config \
zlib-devel \
zlib-devel \
...
...
ci-scripts/generateHtmlReport.py
View file @
a9ed89a3
...
@@ -774,7 +774,10 @@ class HtmlReport():
...
@@ -774,7 +774,10 @@ class HtmlReport():
logFileName
=
'smf_'
+
variant
+
'_image_build.log'
logFileName
=
'smf_'
+
variant
+
'_image_build.log'
if
os
.
path
.
isfile
(
cwd
+
'/archives/'
+
logFileName
):
if
os
.
path
.
isfile
(
cwd
+
'/archives/'
+
logFileName
):
section_start_pattern
=
'WORKDIR /openair-smf/etc'
section_start_pattern
=
'WORKDIR /openair-smf/etc'
if
variant
==
'docker'
:
section_end_pattern
=
'Successfully tagged oai-smf'
section_end_pattern
=
'Successfully tagged oai-smf'
else
:
section_end_pattern
=
'COMMIT oai-smf:'
section_status
=
False
section_status
=
False
status
=
False
status
=
False
with
open
(
cwd
+
'/archives/'
+
logFileName
,
'r'
)
as
logfile
:
with
open
(
cwd
+
'/archives/'
+
logFileName
,
'r'
)
as
logfile
:
...
@@ -845,7 +848,10 @@ class HtmlReport():
...
@@ -845,7 +848,10 @@ class HtmlReport():
else
:
else
:
result
=
re
.
search
(
'oai-smf *develop'
,
line
)
result
=
re
.
search
(
'oai-smf *develop'
,
line
)
if
result
is
not
None
:
if
result
is
not
None
:
if
variant
==
'docker'
:
result
=
re
.
search
(
'ago *([0-9A-Z]+)'
,
line
)
result
=
re
.
search
(
'ago *([0-9A-Z]+)'
,
line
)
else
:
result
=
re
.
search
(
'ago *([0-9]+ [A-Z]+)'
,
line
)
if
result
is
not
None
:
if
result
is
not
None
:
size
=
result
.
group
(
1
)
size
=
result
.
group
(
1
)
status
=
True
status
=
True
...
...
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