From eb2aaed5cca0be9c3f93586c016d522011f84e14 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Thu, 12 Nov 2020 13:22:14 -0500 Subject: Add Linux ASAN GitHub Action --- ci/common/build.sh | 2 +- ci/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ci') diff --git a/ci/common/build.sh b/ci/common/build.sh index e14c97cb81..f0bdec0a0e 100644 --- a/ci/common/build.sh +++ b/ci/common/build.sh @@ -29,7 +29,7 @@ build_deps() { if test "${CACHE_ENABLE}" = "false" ; then export CCACHE_RECACHE=1 elif test -f "${CACHE_MARKER}" ; then - echo "Using third-party dependencies from Travis cache (last update: $(_stat "${CACHE_MARKER}"))." + echo "Using third-party dependencies from cache (last update: $(_stat "${CACHE_MARKER}"))." cp -a "${CACHE_NVIM_DEPS_DIR}"/. "${DEPS_BUILD_DIR}" fi diff --git a/ci/install.sh b/ci/install.sh index efb37cea4e..cd0d744361 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -19,7 +19,7 @@ echo "Install neovim module for Python 2." CC=cc python2 -m pip -q install --user --upgrade pynvim echo "Install neovim RubyGem." -gem install --no-document --pre neovim +gem install --no-document --user-install --pre neovim echo "Install neovim npm package" source ~/.nvm/nvm.sh -- cgit