diff options
author | Sergei Nikulov <sergey.nikulov@gmail.com> | 2020-10-14 10:00:00 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-11-03 11:18:06 +0100 |
commit | 9f43b28f783cc8f7464492a0b5b9dd35c1625fde (patch) | |
tree | 6f11ed12dc355f905d4649957a126f73ac4df912 /scripts | |
parent | 9386e2a37a8ebbaaf4b9880850e9d29931d02aa3 (diff) | |
download | curl-9f43b28f783cc8f7464492a0b5b9dd35c1625fde.tar.gz |
CI/tests: enable test target on TravisCI for CMake builds
Added test-nonflaky target to CMake builds
Disabled test 1139 because the cmake build doesn't create docs/curl.1
Closes #6074
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis/script.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 4b7b7bb0a..77be8971c 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -106,6 +106,7 @@ fi if [ "$T" = "cmake" ]; then cmake -H. -Bbuild -DCURL_WERROR=ON $C cmake --build build + env TFLAGS="!1139" cmake --build build --target test-nonflaky fi if [ "$T" = "distcheck" ]; then |