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
littleBu
OpenXG-RAN
Commits
da099ca7
Commit
da099ca7
authored
2 years ago
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/ci-new-ssh' into integration_2023_w02
parents
f36d7e8e
3b910722
Branches unavailable
2025.w08
2025.w07
2025.w06
2025.w05
2025.w04
2025.w03
2025.w02
2024.w51
2024.w50
2024.w49
2024.w48
2024.w47
2024.w46
2024.w45
2024.w44
2024.w43
2024.w42
2024.w41
2024.w40
2024.w39
2024.w38
2024.w36
2024.w35
2024.w34
2024.w33
2024.w32
2024.w31
2024.w30
2024.w29
2024.w28
2024.w27
2024.w26
2024.w25
2024.w24
2024.w23
2024.w22
2024.w21
2024.w18
2024.w17
2024.w16
2024.w15
2024.w14
2024.w13
2024.w12
2024.w11
2024.w10
2024.w09
2024.w08
2024.w06
2024.w05
2024.w04
2024.w03
2024.w02
2024.w01
2023.w51
2023.w50
2023.w49
2023.w48
2023.w47
2023.w45
2023.w43
2023.w42
2023.w41
2023.w40
2023.w39
2023.w38
2023.w37
2023.w36
2023.w34
2023.w33
2023.w32
2023.w31
2023.w30
2023.w29
2023.w28
2023.w27
2023.w26
2023.w25
2023.w24
2023.w23
2023.w22
2023.w21
2023.w20
2023.w19
2023.w18
2023.w18b
2023.w16
2023.w15
2023.w14
2023.w13
2023.w12
2023.w11
2023.w11b
2023.w10
2023.w10b
2023.w09
2023.w08
2023.w08b
2023.w07
2023.w06
2023.w05
2023.w03
2023.w02
v2.2.0
v2.1.0
v2.0.0
ARC_1.3
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
411 additions
and
214 deletions
+411
-214
ci-scripts/cls_cluster.py
ci-scripts/cls_cluster.py
+139
-160
ci-scripts/cls_cmd.py
ci-scripts/cls_cmd.py
+217
-0
ci-scripts/cls_containerize.py
ci-scripts/cls_containerize.py
+51
-51
ci-scripts/cls_physim1.py
ci-scripts/cls_physim1.py
+4
-3
No files found.
ci-scripts/cls_cluster.py
View file @
da099ca7
This diff is collapsed.
Click to expand it.
ci-scripts/cls_cmd.py
0 → 100644
View file @
da099ca7
#/*
# * 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
# */
#---------------------------------------------------------------------
#
# Required Python Version
# Python 3.x
#
#---------------------------------------------------------------------
import
abc
import
logging
import
subprocess
as
sp
import
os
import
paramiko
import
uuid
# provides a partial interface for the legacy SSHconnection class (getBefore(), command())
class
Cmd
(
metaclass
=
abc
.
ABCMeta
):
def
cd
(
self
,
d
,
silent
=
False
):
if
d
==
None
or
d
==
''
or
d
==
[]:
self
.
cwd
=
None
elif
d
[
0
]
==
'/'
:
self
.
cwd
=
d
else
:
if
not
self
.
cwd
:
# no cwd set: get current working directory
self
.
cwd
=
self
.
run
(
'pwd'
).
stdout
.
strip
()
self
.
cwd
+=
f"/
{
d
}
"
if
not
silent
:
logging
.
debug
(
f'cd
{
self
.
cwd
}
'
)
@
abc
.
abstractmethod
def
run
(
self
,
line
,
timeout
=
300
,
silent
=
False
):
return
@
abc
.
abstractmethod
def
command
(
self
,
commandline
,
expectedline
,
timeout
,
silent
=
False
,
resync
=
False
):
return
@
abc
.
abstractmethod
def
close
(
self
):
return
@
abc
.
abstractmethod
def
getBefore
(
self
):
return
@
abc
.
abstractmethod
def
copyin
(
self
,
scpIp
,
scpUser
,
scpPw
,
src
,
tgt
):
return
@
abc
.
abstractmethod
def
copyout
(
self
,
scpIp
,
scpUser
,
scpPw
,
src
,
tgt
):
return
class
LocalCmd
(
Cmd
):
def
__init__
(
self
,
d
=
None
):
self
.
cwd
=
d
self
.
cp
=
sp
.
CompletedProcess
(
args
=
''
,
returncode
=
0
,
stdout
=
''
)
def
run
(
self
,
line
,
timeout
=
300
,
silent
=
False
,
reportNonZero
=
True
):
if
type
(
line
)
is
str
:
line
=
[
s
for
s
in
line
.
split
(
' '
)
if
len
(
s
)
>
0
]
if
not
silent
:
logging
.
debug
(
' '
.
join
(
line
))
try
:
ret
=
sp
.
run
(
line
,
cwd
=
self
.
cwd
,
stdout
=
sp
.
PIPE
,
stderr
=
sp
.
STDOUT
,
timeout
=
timeout
)
except
Exception
as
e
:
ret
=
sp
.
CompletedProcess
(
args
=
line
,
returncode
=
255
,
stdout
=
f'Exception:
{
str
(
e
)
}
'
.
encode
(
'utf-8'
))
if
ret
.
stdout
is
None
:
ret
.
stdout
=
b''
ret
.
stdout
=
ret
.
stdout
.
decode
(
'utf-8'
).
strip
()
if
reportNonZero
and
ret
.
returncode
!=
0
:
cmd
=
' '
.
join
(
ret
.
args
)
logging
.
warning
(
f'command "
{
cmd
}
" returned non-zero returncode
{
ret
.
returncode
}
: output:
\n
{
ret
.
stdout
}
'
)
self
.
cp
=
ret
return
ret
def
command
(
self
,
commandline
,
expectedline
=
None
,
timeout
=
300
,
silent
=
False
,
resync
=
False
):
line
=
[
s
for
s
in
commandline
.
split
(
' '
)
if
len
(
s
)
>
0
]
if
line
[
0
]
==
'cd'
:
self
.
cd
(
line
[
1
],
silent
)
else
:
self
.
run
(
line
,
timeout
,
silent
)
return
0
def
close
(
self
):
pass
def
getBefore
(
self
):
return
self
.
cp
.
stdout
def
copyin
(
self
,
scpIp
,
scpUser
,
scpPw
,
src
,
tgt
):
logging
.
warning
(
"LocalCmd emulating sshconnection.copyin() function"
)
self
.
run
(
f'cp -r
{
src
}
{
tgt
}
'
)
def
copyout
(
self
,
scpIp
,
scpUser
,
scpPw
,
src
,
tgt
):
logging
.
warning
(
"LocalCmd emulating sshconnection.copyout() function"
)
self
.
run
(
f'cp -r
{
src
}
{
tgt
}
'
)
class
RemoteCmd
(
Cmd
):
def
__init__
(
self
,
hostname
,
d
=
None
):
logging
.
getLogger
(
'paramiko'
).
setLevel
(
logging
.
INFO
)
# prevent spamming through Paramiko
self
.
client
=
paramiko
.
SSHClient
()
self
.
client
.
set_missing_host_key_policy
(
paramiko
.
AutoAddPolicy
())
cfg
=
RemoteCmd
.
_lookup_ssh_config
(
hostname
)
self
.
client
.
connect
(
**
cfg
)
self
.
cwd
=
d
self
.
cp
=
sp
.
CompletedProcess
(
args
=
''
,
returncode
=
0
,
stdout
=
''
)
def
_lookup_ssh_config
(
hostname
):
ssh_config
=
paramiko
.
SSHConfig
()
user_config_file
=
os
.
path
.
expanduser
(
"~/.ssh/config"
)
if
os
.
path
.
exists
(
user_config_file
):
with
open
(
user_config_file
)
as
f
:
ssh_config
.
parse
(
f
)
else
:
raise
FileNotFoundError
(
'class needs SSH config at ~/.ssh/config'
)
ucfg
=
ssh_config
.
lookup
(
hostname
)
if
'identityfile'
not
in
ucfg
or
'user'
not
in
ucfg
:
raise
KeyError
(
f'no identityfile or user in SSH config for host
{
hostname
}
'
)
cfg
=
{
'hostname'
:
hostname
,
'username'
:
ucfg
[
'user'
],
'key_filename'
:
ucfg
[
'identityfile'
]}
if
'hostname'
in
ucfg
:
cfg
[
'hostname'
]
=
ucfg
[
'hostname'
]
# override user-given hostname with what is in config
if
'port'
in
ucfg
:
cfg
[
'port'
]
=
int
(
ucfg
[
'port'
])
if
'proxycommand'
in
ucfg
:
cfg
[
'sock'
]
=
paramiko
.
ProxyCommand
(
ucfg
[
'proxycommand'
])
return
cfg
def
run
(
self
,
line
,
timeout
=
300
,
silent
=
False
,
reportNonZero
=
True
):
if
type
(
line
)
is
list
:
line
=
' '
.
join
(
line
)
if
not
silent
:
logging
.
debug
(
line
)
if
self
.
cwd
:
line
=
f"cd
{
self
.
cwd
}
&&
{
line
}
"
args
=
line
.
split
(
' '
)
try
:
stdin
,
stdout
,
stderr
=
self
.
client
.
exec_command
(
line
,
timeout
=
timeout
)
ret
=
sp
.
CompletedProcess
(
args
=
args
,
returncode
=
stdout
.
channel
.
recv_exit_status
(),
stdout
=
stdout
.
read
(
size
=
None
)
+
stderr
.
read
(
size
=
None
))
except
Exception
as
e
:
ret
=
sp
.
CompletedProcess
(
args
=
args
,
returncode
=
255
,
stdout
=
f'Exception:
{
str
(
e
)
}
'
.
encode
(
'utf-8'
))
ret
.
stdout
=
ret
.
stdout
.
decode
(
'utf-8'
).
strip
()
if
reportNonZero
and
ret
.
returncode
!=
0
:
cmd
=
' '
.
join
(
ret
.
args
)
logging
.
warning
(
f'command "
{
cmd
}
" returned non-zero returncode
{
ret
.
returncode
}
: output:
\n
{
ret
.
stdout
}
'
)
self
.
cp
=
ret
return
ret
def
command
(
self
,
commandline
,
expectedline
=
None
,
timeout
=
300
,
silent
=
False
,
resync
=
False
):
line
=
[
s
for
s
in
commandline
.
split
(
' '
)
if
len
(
s
)
>
0
]
if
line
[
0
]
==
'cd'
:
self
.
cd
(
line
[
1
],
silent
)
else
:
self
.
run
(
line
,
timeout
,
silent
)
return
0
def
close
(
self
):
self
.
client
.
close
()
def
getBefore
(
self
):
return
self
.
cp
.
stdout
def
copyout
(
self
,
src
,
tgt
,
recursive
=
False
):
logging
.
warning
(
"RemoteCmd emulating sshconnection.copyout() function, ignoring scpIp"
)
logging
.
debug
(
f"copyout: local:
{
src
}
-> remote:
{
tgt
}
"
)
if
recursive
:
tmpfile
=
f"
{
uuid
.
uuid4
()
}
.tar"
abstmpfile
=
f"/tmp/
{
tmpfile
}
"
cmd
=
LocalCmd
()
cmd
.
run
(
f"tar -cf
{
abstmpfile
}
{
src
}
"
)
sftp
=
self
.
client
.
open_sftp
()
sftp
.
put
(
abstmpfile
,
abstmpfile
)
sftp
.
close
()
cmd
.
run
(
f"rm
{
abstmpfile
}
"
)
self
.
run
(
f"mv
{
abstmpfile
}
{
tgt
}
; cd
{
tgt
}
&& tar -xf
{
tmpfile
}
&& rm
{
tmpfile
}
"
)
else
:
sftp
=
self
.
client
.
open_sftp
()
sftp
.
put
(
src
,
tgt
)
sftp
.
close
()
def
copyin
(
self
,
src
,
tgt
,
recursive
=
False
):
logging
.
warning
(
"RemoteCmd emulating sshconnection.copyout() function"
)
logging
.
debug
(
f"copyin: remote:
{
src
}
-> local:
{
tgt
}
"
)
if
recursive
:
tmpfile
=
f"
{
uuid
.
uuid4
()
}
.tar"
abstmpfile
=
f"/tmp/
{
tmpfile
}
"
self
.
run
(
f"tar -cf
{
abstmpfile
}
{
src
}
"
)
sftp
=
self
.
client
.
open_sftp
()
sftp
.
get
(
abstmpfile
,
abstmpfile
)
sftp
.
close
()
self
.
run
(
f"rm
{
abstmpfile
}
"
)
cmd
=
LocalCmd
()
cmd
.
run
(
f"mv
{
abstmpfile
}
{
tgt
}
; cd
{
tgt
}
&& tar -xf
{
tmpfile
}
&& rm
{
tmpfile
}
"
)
else
:
sftp
=
self
.
client
.
open_sftp
()
sftp
.
get
(
src
,
tgt
)
sftp
.
close
()
This diff is collapsed.
Click to expand it.
ci-scripts/cls_containerize.py
View file @
da099ca7
This diff is collapsed.
Click to expand it.
ci-scripts/cls_physim1.py
View file @
da099ca7
...
...
@@ -32,13 +32,14 @@
# Import
#-----------------------------------------------------------
import
logging
import
sshconnection
as
SSH
import
cls_oai_html
import
os
import
re
import
time
import
subprocess
import
sys
import
sshconnection
as
SSH
import
cls_oai_html
import
constants
as
CONST
import
helpreadme
as
HELP
...
...
@@ -105,7 +106,7 @@ class PhySim:
if
self
.
ranCommitID
!=
''
:
mySSH
.
command
(
'git checkout -f '
+
self
.
ranCommitID
,
'\$'
,
30
)
if
self
.
ranAllowMerge
:
imageTag
=
"ci-temp"
imageTag
=
f'
{
self
.
ranBranch
}
-
{
self
.
ranCommitID
[
0
:
8
]
}
'
if
self
.
ranTargetBranch
==
''
:
if
(
self
.
ranBranch
!=
'develop'
)
and
(
self
.
ranBranch
!=
'origin/develop'
):
mySSH
.
command
(
'git merge --ff origin/develop -m "Temporary merge for CI"'
,
'\$'
,
30
)
...
...
This diff is collapsed.
Click to expand it.
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