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
3a0a14cf
Commit
3a0a14cf
authored
Aug 18, 2022
by
laurent
Committed by
Robert Schmidt
Aug 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gzip optim, links for size
parent
e28fccc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
ci-scripts/cls_containerize.py
ci-scripts/cls_containerize.py
+1
-1
cmake_targets/tools/build_helper
cmake_targets/tools/build_helper
+3
-2
No files found.
ci-scripts/cls_containerize.py
View file @
3a0a14cf
...
...
@@ -579,7 +579,7 @@ class Containerize():
lUserName
=
self
.
eNB2UserName
lPassWord
=
self
.
eNB2Password
lSsh
.
open
(
lIpAddr
,
lUserName
,
lPassWord
)
lSsh
.
command
(
'docker save '
+
self
.
imageToCopy
+
':'
+
imageTag
+
' | gzip > '
+
self
.
imageToCopy
+
'-'
+
imageTag
+
'.tar.gz'
,
'\$'
,
60
)
lSsh
.
command
(
'docker save '
+
self
.
imageToCopy
+
':'
+
imageTag
+
' | gzip
--fast
> '
+
self
.
imageToCopy
+
'-'
+
imageTag
+
'.tar.gz'
,
'\$'
,
60
)
lSsh
.
copyin
(
lIpAddr
,
lUserName
,
lPassWord
,
'~/'
+
self
.
imageToCopy
+
'-'
+
imageTag
+
'.tar.gz'
,
'.'
)
lSsh
.
command
(
'rm '
+
self
.
imageToCopy
+
'-'
+
imageTag
+
'.tar.gz'
,
'\$'
,
60
)
lSsh
.
close
()
...
...
cmake_targets/tools/build_helper
View file @
3a0a14cf
...
...
@@ -237,8 +237,9 @@ compilations() {
echo_error "$2 compilation failed"
exit 1
fi
if [ -s $3 ] ; then
cp $3 $4
if [ -s "$3" ] ; then
rm -f "$4"
ln -s "$PWD/$3" "$4"
echo_success "$2 compiled"
check_warnings "$dlog/$2.$REL.txt"
else
...
...
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