aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2020-11-12 13:20:00 -0500
committerJames McCoy <jamessan@jamessan.com>2020-11-13 13:36:56 -0500
commit86eba08a4b047085c9240abe99e36acc5a1433e9 (patch)
tree39ece7212da2ec0a3a19fc9bee1ac7ee7f7a8060 /src
parent4ae31c46f75aef7d7a80dd2a8d269c168806a1bd (diff)
downloadrneovim-86eba08a4b047085c9240abe99e36acc5a1433e9.tar.gz
rneovim-86eba08a4b047085c9240abe99e36acc5a1433e9.tar.bz2
rneovim-86eba08a4b047085c9240abe99e36acc5a1433e9.zip
build: Rename TRAVIS_CI_BUILD variable to CI_BUILD
Diffstat (limited to 'src')
-rw-r--r--src/nvim/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index 9b6e9fe13e..8ec087c626 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -617,14 +617,14 @@ if(CLANG_ASAN_UBSAN)
message(STATUS "Enabling Clang address sanitizer and undefined behavior sanitizer for nvim.")
check_c_compiler_flag(-fno-sanitize-recover=all SANITIZE_RECOVER_ALL)
if(SANITIZE_RECOVER_ALL)
- if(TRAVIS_CI_BUILD)
+ if(CI_BUILD)
# Try to recover from all sanitize issues so we get reports about all failures
set(SANITIZE_RECOVER -fsanitize-recover=all) # Clang 3.6+
else()
set(SANITIZE_RECOVER -fno-sanitize-recover=all) # Clang 3.6+
endif()
else()
- if(TRAVIS_CI_BUILD)
+ if(CI_BUILD)
# Try to recover from all sanitize issues so we get reports about all failures
set(SANITIZE_RECOVER -fsanitize-recover) # Clang 3.5-
else()