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>2020-11-10 15:24:31 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-11-10 15:24:31 +0300
commite919b61352efdbf28a963ea81fcbea7ed4c7fd30 (patch)
tree8c47d024993fa8d6d6b96de9fbfb2f8fb893461b /.ci.cmake
parente78db6c58f15824102f9aee739b773460f3474b6 (diff)
Hopefully this ought to fix all outstanding failures on new github actions CI
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci.cmake b/.ci.cmake
index 0f4bc11a..63a45ade 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -19,7 +19,8 @@ ctest_build(TARGET _sl)
set(retval 0)
if(NOT CTEST_DISABLE_TESTING)
if(WIN32)
- ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex")
+ # Appveyor's Windows version doesn't permit unprivileged creation of symbolic links
+ ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex|symlink")
elseif("$ENV{CXX}" MATCHES "clang")
# clang 10 with libc++ in C++ 20 currently segfaults
ctest_test(RETURN_VALUE retval EXCLUDE "shared_fs_mutex|llfio_hl--coroutines")