Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
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
Michael Black
OpenXG-RAN
Commits
e1798745
Commit
e1798745
authored
Jul 19, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dynamically build L2sim proxy
parent
72bf1b1d
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
354 additions
and
4 deletions
+354
-4
ci-scripts/Jenkinsfile-push-registry
ci-scripts/Jenkinsfile-push-registry
+1
-1
ci-scripts/Jenkinsfile-tmp-multi-enb
ci-scripts/Jenkinsfile-tmp-multi-enb
+185
-2
ci-scripts/cls_containerize.py
ci-scripts/cls_containerize.py
+119
-0
ci-scripts/main.py
ci-scripts/main.py
+6
-1
ci-scripts/xml_class_list.yml
ci-scripts/xml_class_list.yml
+1
-0
ci-scripts/xml_files/container_5g_l2sim_proxy.xml
ci-scripts/xml_files/container_5g_l2sim_proxy.xml
+42
-0
No files found.
ci-scripts/Jenkinsfile-push-registry
View file @
e1798745
...
...
@@ -66,7 +66,7 @@ pipeline {
withCredentials
([
[
$class
:
'UsernamePasswordMultiBinding'
,
credentialsId:
"${params.DH_Credentials}"
,
usernameVariable:
'DH_Username'
,
passwordVariable:
'DH_Password'
]
])
{
def
listOfImages
=
[
"oai-enb"
,
"oai-gnb"
,
"oai-lte-ue"
,
"oai-nr-ue"
]
def
listOfImages
=
[
"oai-enb"
,
"oai-gnb"
,
"oai-lte-ue"
,
"oai-nr-ue"
,
"proxy"
]
sh
"docker login -u ${DH_Username} -p ${DH_Password} > /dev/null 2>&1"
listOfImages
.
eachWithIndex
{
item
,
iindex
->
sh
"docker image tag ${item}:develop ${DH_Account}/${item}:develop"
...
...
ci-scripts/Jenkinsfile-tmp-multi-enb
View file @
e1798745
This diff is collapsed.
Click to expand it.
ci-scripts/cls_containerize.py
View file @
e1798745
...
...
@@ -74,6 +74,7 @@ class Containerize():
self
.
eNB2SourceCodePath
=
''
self
.
forcedWorkspaceCleanup
=
False
self
.
imageKind
=
''
self
.
proxyCommit
=
None
self
.
eNB_instance
=
0
self
.
eNB_serverId
=
[
''
,
''
,
''
]
self
.
yamlPath
=
[
''
,
''
,
''
]
...
...
@@ -421,6 +422,124 @@ class Containerize():
HTML
.
CreateHtmlTabFooter
(
False
)
sys
.
exit
(
1
)
def
BuildProxy
(
self
,
HTML
):
if
self
.
ranRepository
==
''
or
self
.
ranBranch
==
''
or
self
.
ranCommitID
==
''
:
HELP
.
GenericHelp
(
CONST
.
Version
)
sys
.
exit
(
'Insufficient Parameter'
)
if
self
.
eNB_serverId
[
self
.
eNB_instance
]
==
'0'
:
lIpAddr
=
self
.
eNBIPAddress
lUserName
=
self
.
eNBUserName
lPassWord
=
self
.
eNBPassword
lSourcePath
=
self
.
eNBSourceCodePath
elif
self
.
eNB_serverId
[
self
.
eNB_instance
]
==
'1'
:
lIpAddr
=
self
.
eNB1IPAddress
lUserName
=
self
.
eNB1UserName
lPassWord
=
self
.
eNB1Password
lSourcePath
=
self
.
eNB1SourceCodePath
elif
self
.
eNB_serverId
[
self
.
eNB_instance
]
==
'2'
:
lIpAddr
=
self
.
eNB2IPAddress
lUserName
=
self
.
eNB2UserName
lPassWord
=
self
.
eNB2Password
lSourcePath
=
self
.
eNB2SourceCodePath
if
lIpAddr
==
''
or
lUserName
==
''
or
lPassWord
==
''
or
lSourcePath
==
''
:
HELP
.
GenericHelp
(
CONST
.
Version
)
sys
.
exit
(
'Insufficient Parameter'
)
if
self
.
proxyCommit
is
None
:
HELP
.
GenericHelp
(
CONST
.
Version
)
sys
.
exit
(
'Insufficient Parameter (need proxyCommit for proxy build)'
)
logging
.
debug
(
'Building on server: '
+
lIpAddr
)
mySSH
=
SSH
.
SSHConnection
()
mySSH
.
open
(
lIpAddr
,
lUserName
,
lPassWord
)
# Check that we are on Ubuntu
mySSH
.
command
(
'hostnamectl'
,
'\$'
,
5
)
result
=
re
.
search
(
'Ubuntu'
,
mySSH
.
getBefore
())
self
.
host
=
result
.
group
(
0
)
if
self
.
host
!=
'Ubuntu'
:
logging
.
error
(
'
\u001B
[1m Can build proxy only on Ubuntu server
\u001B
[0m'
)
mySSH
.
close
()
sys
.
exit
(
1
)
self
.
cli
=
'docker'
self
.
cliBuildOptions
=
'--no-cache'
# Workaround for some servers, we need to erase completely the workspace
if
self
.
forcedWorkspaceCleanup
:
mySSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S rm -Rf '
+
lSourcePath
,
'\$'
,
15
)
oldRanCommidID
=
self
.
ranCommitID
oldRanRepository
=
self
.
ranRepository
oldRanAllowMerge
=
self
.
ranAllowMerge
self
.
ranCommitID
=
self
.
proxyCommit
self
.
ranRepository
=
'https://github.com/EpiSci/oai-lte-5g-multi-ue-proxy.git'
self
.
ranAllowMerge
=
False
self
.
_createWorkspace
(
mySSH
,
lPassWord
,
lSourcePath
)
# to prevent accidentally overwriting data that might be used later
self
.
ranCommitID
=
oldRanCommidID
self
.
ranRepository
=
oldRanRepository
self
.
ranAllowMerge
=
oldRanAllowMerge
# Let's remove any previous run artifacts if still there
mySSH
.
command
(
self
.
cli
+
' image prune --force'
,
'\$'
,
30
)
# Remove any previous proxy image
mySSH
.
command
(
self
.
cli
+
' image rm oai-lte-multi-ue-proxy:latest || true'
,
'\$'
,
30
)
tag
=
self
.
proxyCommit
logging
.
debug
(
'building L2sim proxy image for tag '
+
tag
)
# check if the corresponding proxy image with tag exists. If not, build it
mySSH
.
command
(
self
.
cli
+
' image inspect --format=
\'
Size = {{.Size}} bytes
\'
proxy:'
+
tag
,
'\$'
,
5
)
buildProxy
=
mySSH
.
getBefore
().
count
(
'o such image'
)
!=
0
if
buildProxy
:
mySSH
.
command
(
self
.
cli
+
' build '
+
self
.
cliBuildOptions
+
' --target oai-lte-multi-ue-proxy --tag proxy:'
+
tag
+
' --file docker/Dockerfile.ubuntu18.04 . > cmake_targets/log/proxy-build.log 2>&1'
,
'\$'
,
180
)
# Note: at this point, OAI images are flattened, but we cannot do this
# here, as the flatten script is not in the proxy repo
mySSH
.
command
(
self
.
cli
+
' image inspect --format=
\'
Size = {{.Size}} bytes
\'
proxy:'
+
tag
,
'\$'
,
5
)
if
mySSH
.
getBefore
().
count
(
'o such image'
)
!=
0
:
logging
.
error
(
'
\u001B
[1m Build of L2sim proxy failed
\u001B
[0m'
)
mySSH
.
close
()
HTML
.
CreateHtmlTestRow
(
'commit '
+
tag
,
'KO'
,
CONST
.
ALL_PROCESSES_OK
)
HTML
.
CreateHtmlTabFooter
(
False
)
sys
.
exit
(
1
)
else
:
logging
.
debug
(
'L2sim proxy image for tag '
+
tag
+
' already exists, skipping build'
)
# retag the build images to that we pick it up later
mySSH
.
command
(
'docker image tag proxy:'
+
tag
+
' oai-lte-multi-ue-proxy:latest'
,
'\$'
,
5
)
# no merge: is a push to develop, tag the image so we can push it to the registry
if
not
self
.
ranAllowMerge
:
mySSH
.
command
(
'docker image tag proxy:'
+
tag
+
' proxy:develop'
,
'\$'
,
5
)
# we assume that the host on which this is built will also run the proxy. The proxy
# currently requires the following command, and the docker-compose up mechanism of
# the CI does not allow to run arbitrary commands. Note that the following actually
# belongs to the deployment, not the build of the proxy...
logging
.
warning
(
'the following command belongs to deployment, but no mechanism exists to exec it there!'
)
mySSH
.
command
(
'sudo ifconfig lo: 127.0.0.2 netmask 255.0.0.0 up'
,
'\$'
,
5
)
# Analyzing the logs
if
buildProxy
:
self
.
testCase_id
=
HTML
.
testCase_id
mySSH
.
command
(
'cd '
+
lSourcePath
+
'/cmake_targets'
,
'\$'
,
5
)
mySSH
.
command
(
'mkdir -p proxy_build_log_'
+
self
.
testCase_id
,
'\$'
,
5
)
mySSH
.
command
(
'mv log/* '
+
'proxy_build_log_'
+
self
.
testCase_id
,
'\$'
,
5
)
if
(
os
.
path
.
isfile
(
'./proxy_build_log_'
+
self
.
testCase_id
+
'.zip'
)):
os
.
remove
(
'./proxy_build_log_'
+
self
.
testCase_id
+
'.zip'
)
if
(
os
.
path
.
isdir
(
'./proxy_build_log_'
+
self
.
testCase_id
)):
shutil
.
rmtree
(
'./proxy_build_log_'
+
self
.
testCase_id
)
mySSH
.
command
(
'zip -r -qq proxy_build_log_'
+
self
.
testCase_id
+
'.zip proxy_build_log_'
+
self
.
testCase_id
,
'\$'
,
5
)
mySSH
.
copyin
(
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
+
'/cmake_targets/build_log_'
+
self
.
testCase_id
+
'.zip'
,
'.'
)
# don't delete such that we might recover the zips
#mySSH.command('rm -f build_log_' + self.testCase_id + '.zip','\$', 5)
# Cleaning any created tmp volume
mySSH
.
command
(
self
.
cli
+
' volume prune --force || true'
,
'\$'
,
15
)
mySSH
.
close
()
logging
.
info
(
'
\u001B
[1m Building L2sim Proxy Image Pass
\u001B
[0m'
)
HTML
.
CreateHtmlTestRow
(
'commit '
+
tag
,
'OK'
,
CONST
.
ALL_PROCESSES_OK
)
HTML
.
CreateHtmlNextTabHeaderTestRow
(
self
.
collectInfo
,
self
.
allImagesSize
)
def
Copy_Image_to_Test_Server
(
self
,
HTML
):
imageTag
=
'develop'
if
(
self
.
ranAllowMerge
):
...
...
ci-scripts/main.py
View file @
e1798745
...
...
@@ -102,7 +102,7 @@ def AssignParams(params_dict):
def
GetParametersFromXML
(
action
):
if
action
==
'Build_eNB'
or
action
==
'Build_Image'
:
if
action
==
'Build_eNB'
or
action
==
'Build_Image'
or
action
==
'Build_Proxy'
:
RAN
.
Build_eNB_args
=
test
.
findtext
(
'Build_eNB_args'
)
CONTAINERS
.
imageKind
=
test
.
findtext
(
'kind'
)
forced_workspace_cleanup
=
test
.
findtext
(
'forced_workspace_cleanup'
)
...
...
@@ -138,6 +138,9 @@ def GetParametersFromXML(action):
RAN
.
backgroundBuild
=
True
else
:
RAN
.
backgroundBuild
=
False
proxy_commit
=
test
.
findtext
(
'proxy_commit'
)
if
proxy_commit
is
not
None
:
CONTAINERS
.
proxyCommit
=
proxy_commit
elif
action
==
'WaitEndBuild_eNB'
:
RAN
.
Build_eNB_args
=
test
.
findtext
(
'Build_eNB_args'
)
...
...
@@ -915,6 +918,8 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
HTML
=
ldpc
.
Run_PhySim
(
HTML
,
CONST
,
id
)
elif
action
==
'Build_Image'
:
CONTAINERS
.
BuildImage
(
HTML
)
elif
action
==
'Build_Proxy'
:
CONTAINERS
.
BuildProxy
(
HTML
)
elif
action
==
'Copy_Image_to_Test'
:
CONTAINERS
.
Copy_Image_to_Test_Server
(
HTML
)
elif
action
==
'Deploy_Object'
:
...
...
ci-scripts/xml_class_list.yml
View file @
e1798745
-
Build_Proxy
-
Build_PhySim
-
Run_PhySim
-
Build_eNB
...
...
ci-scripts/xml_files/container_5g_l2sim_proxy.xml
0 → 100644
View file @
e1798745
<!--
Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The OpenAirInterface Software Alliance licenses this file to You under
the OAI Public License, Version 1.1 (the "License"); you may not use this file
except in compliance with the License.
You may obtain a copy of the License at
http://www.openairinterface.org/?page_id=698
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
For more information about the OpenAirInterface (OAI) Software Alliance:
contact@openairinterface.org
-->
<testCaseList>
<htmlTabRef>
l2sim-5gnr-proxy-build
</htmlTabRef>
<htmlTabName>
Build L2sim proxy image
</htmlTabName>
<htmlTabIcon>
wrench
</htmlTabIcon>
<repeatCount>
1
</repeatCount>
<TestCaseRequestedList>
000001
</TestCaseRequestedList>
<TestCaseExclusionList></TestCaseExclusionList>
<testCase
id=
"000001"
>
<class>
Build_Proxy
</class>
<desc>
Build L2sim Proxy Image
</desc>
<eNB_instance>
1
</eNB_instance>
<eNB_serverId>
1
</eNB_serverId>
<forced_workspace_cleanup>
True
</forced_workspace_cleanup>
<proxy_commit>
56cfdc0
</proxy_commit>
</testCase>
</testCaseList>
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