Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
OpenFlipper-Free
Commits
d1fe65a2
Commit
d1fe65a2
authored
Nov 09, 2020
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't copy wrong system libs
parent
db461df1
Pipeline
#15688
passed with stages
in 36 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
CI/ci-linux-test.sh
CI/ci-linux-test.sh
+7
-6
No files found.
CI/ci-linux-test.sh
View file @
d1fe65a2
...
...
@@ -50,14 +50,14 @@ ls
# copy the used shared libraries to the lib folder
cd
Build
#
cd Build
if
[
!
-d
systemlib
]
;
then
mkdir
systemlib
fi
#
if [ ! -d systemlib ]; then
#
mkdir systemlib
#
fi
ldd bin/OpenFlipper |
grep
"=> /"
|
awk
'{print $3}'
| xargs
-I
'{}'
cp
-v
'{}'
systemlib
cd
..
#
ldd bin/OpenFlipper | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' systemlib
#
cd ..
#clean old cmake cache as the path might have changed
find
.
-name
"CMakeCache.txt"
-type
f
-delete
...
...
@@ -75,6 +75,7 @@ then
rm
DartConfiguration.tcl
fi
# Run cmake to make sure the tests are configured correctly for this system
cmake
-DOPENFLIPPER_BUILD_UNIT_TESTS
=
TRUE
-DSTL_VECTOR_CHECKS
=
ON
$OPTIONS
../
#tell the location to the libs from build jobs
...
...
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