Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-04-15 15:34:16 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-04-15 15:34:16 +0300
commit5aab699158ef10ba4f957dfe72ea11fa855f05ee (patch)
tree73880e08411cbf0d77508b8a30f536321f88cc3c /.ci.cmake
parenta545198605101672a1a8b5676a1d74c325247417 (diff)
CI script wasn't uploading prebuilt binaries for Linux properly
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake10
1 files changed, 6 insertions, 4 deletions
diff --git a/.ci.cmake b/.ci.cmake
index de2a620c..32570ca6 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -44,20 +44,22 @@ if(WIN32)
get_filename_component(toupload afio_v2_binaries_win64.tar.gz ABSOLUTE)
endif()
else()
- if(EXISTS prebuilt/bin/Release/afio_dl-2.0-Linux-x86_64-Release.so)
+ if(EXISTS prebuilt/lib/libafio_dl-2.0-Linux-x86_64-Release.so)
checked_execute_process("Tarring up binaries"
COMMAND "${CMAKE_COMMAND}" -E tar cfz afio_v2_binaries_linux64.tgz
doc
include
Readme.md
release_notes.md
- prebuilt/lib/Release/afio_sl-2.0-Linux-x86_64-Release.a
- prebuilt/bin/Release/afio_dl-2.0-Linux-x86_64-Release.so
+ prebuilt/lib/libafio_sl-2.0-Linux-x86_64-Release.a
+ prebuilt/lib/libafio_dl-2.0-Linux-x86_64-Release.so
)
get_filename_component(toupload afio_v2_binaries_linux64.tgz ABSOLUTE)
endif()
endif()
-ctest_upload(FILES "${toupload}")
+if(EXISTS "${toupload}")
+ ctest_upload(FILES "${toupload}")
+endif()
ctest_submit()
if(NOT retval EQUAL 0)
message(FATAL_ERROR "FATAL: Running tests exited with ${retval}")