Commit a1a7481f by FritzFlorian

Add library build as ci output.

parent 4ad4b179
Pipeline #1096 passed with stages
in 1 minute 39 seconds
...@@ -11,7 +11,7 @@ build_cmake: ...@@ -11,7 +11,7 @@ build_cmake:
./ci_scripts/build_cmake_release.sh ./ci_scripts/build_cmake_release.sh
artifacts: artifacts:
paths: paths:
- cmake-build-release/bin/ - release/
run_tests: run_tests:
stage: test stage: test
......
...@@ -5,5 +5,12 @@ cd cmake-build-release ...@@ -5,5 +5,12 @@ cd cmake-build-release
cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DTHREAD_SANITIZER=OFF cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DTHREAD_SANITIZER=OFF
make make
rm -r -f ../release
mkdir ../release
cp -r bin/ ../release/bin
cp -r lib/ ../release/lib
cp -r ../lib/pls/include/ ../release/include/
rm -f -r ../release/lib/pls
# echo the result of make to show it in gitlab # echo the result of make to show it in gitlab
exit $? exit $?
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment