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-16 02:52:27 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-04-16 02:52:27 +0300
commit050fff9cfee253db85b933fa1b48fa9cfb9d4210 (patch)
tree0994824114f66bc47d4f17417c64d083e3de8655 /.ci.cmake
parentb5fa1acbc6e55b6a4c210450187230d5c8a7e3f0 (diff)
Fix regression on Windows when locking entire file with byte range locks
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake17
1 files changed, 9 insertions, 8 deletions
diff --git a/.ci.cmake b/.ci.cmake
index b8a52c5c..24305b54 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -32,14 +32,15 @@ merge_junit_results_into_ctest_xml()
if(WIN32)
if(EXISTS prebuilt/bin/Release/afio_dl-2.0-Windows-x64-Release.dll)
checked_execute_process("Tarring up binaries"
- COMMAND mkdir afio
- COMMAND xcopy doc afio\\ -s
- COMMAND xcopy include afio\\ -s
- COMMAND xcopy Readme.md afio\\ -s
- COMMAND xcopy release_notes.md afio\\ -s
- COMMAND xcopy prebuilt\\lib\\Release\\afio_sl-2.0-Windows-x64-Release.lib afio\\ -s
- COMMAND xcopy prebuilt\\lib\\Release\\afio_dl-2.0-Windows-x64-Release.lib afio\\ -s
- COMMAND xcopy prebuilt\\bin\\Release\\afio_dl-2.0-Windows-x64-Release.dll afio\\ -s
+ COMMAND mkdir afio\\prebuilt\\bin\\Release
+ COMMAND mkdir afio\\prebuilt\\lib\\Release
+ COMMAND xcopy doc afio\\ /s
+ COMMAND xcopy include afio\\ /s
+ COMMAND copy Readme.md afio\\ /s
+ COMMAND copy release_notes.md afio\\ /s
+ COMMAND copy prebuilt\\lib\\Release\\afio_sl-2.0-Windows-x64-Release.lib afio\\ /s
+ COMMAND copy prebuilt\\lib\\Release\\afio_dl-2.0-Windows-x64-Release.lib afio\\ /s
+ COMMAND copy prebuilt\\bin\\Release\\afio_dl-2.0-Windows-x64-Release.dll afio\\ /s
COMMAND "${CMAKE_COMMAND}" -E tar cfz afio_v2_binaries_win64.tar.gz afio
)
get_filename_component(toupload afio_v2_binaries_win64.tar.gz ABSOLUTE)