diff options
author | James McCoy <jamessan@jamessan.com> | 2020-11-12 13:21:36 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-11-13 13:36:56 -0500 |
commit | d0714e87d6bb4db6795ae1a1cb33dd38f6f09af8 (patch) | |
tree | fd4be3e798a16a2dc7bcdcf39d43230377c374ab /ci/common/build.sh | |
parent | 86eba08a4b047085c9240abe99e36acc5a1433e9 (diff) | |
download | rneovim-d0714e87d6bb4db6795ae1a1cb33dd38f6f09af8.tar.gz rneovim-d0714e87d6bb4db6795ae1a1cb33dd38f6f09af8.tar.bz2 rneovim-d0714e87d6bb4db6795ae1a1cb33dd38f6f09af8.zip |
build: Rename TRAVIS_BUILD_DIR to CI_BUILD_DIR
Diffstat (limited to 'ci/common/build.sh')
-rw-r--r-- | ci/common/build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/common/build.sh b/ci/common/build.sh index 0024f2cbd5..e14c97cb81 100644 --- a/ci/common/build.sh +++ b/ci/common/build.sh @@ -37,13 +37,13 @@ build_deps() { # update CMake configuration and update to newer deps versions. cd "${DEPS_BUILD_DIR}" echo "Configuring with '${DEPS_CMAKE_FLAGS}'." - CC= cmake -G Ninja ${DEPS_CMAKE_FLAGS} "${TRAVIS_BUILD_DIR}/third-party/" + CC= cmake -G Ninja ${DEPS_CMAKE_FLAGS} "${CI_BUILD_DIR}/third-party/" if ! top_make; then exit 1 fi - cd "${TRAVIS_BUILD_DIR}" + cd "${CI_BUILD_DIR}" } prepare_build() { @@ -54,7 +54,7 @@ prepare_build() { mkdir -p "${BUILD_DIR}" cd "${BUILD_DIR}" echo "Configuring with '${CMAKE_FLAGS} $@'." - cmake -G Ninja ${CMAKE_FLAGS} "$@" "${TRAVIS_BUILD_DIR}" + cmake -G Ninja ${CMAKE_FLAGS} "$@" "${CI_BUILD_DIR}" } build_nvim() { @@ -84,5 +84,5 @@ build_nvim() { fi check_sanitizer "${LOG_DIR}" - cd "${TRAVIS_BUILD_DIR}" + cd "${CI_BUILD_DIR}" } |