diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-11-25 13:04:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-25 13:04:52 +0100 |
| commit | 3a9fd4327a0cc5b21eb7a54a83d0446acbc7b14e (patch) | |
| tree | 0db29401ca568a880a8b82fe1930ad3b492193c5 /ci | |
| parent | 8b39e4ec793334be0e48101830f66e05691393bd (diff) | |
| parent | 2cbac719c3eba8ea5826e16912126d70222911ed (diff) | |
| download | rneovim-3a9fd4327a0cc5b21eb7a54a83d0446acbc7b14e.tar.gz rneovim-3a9fd4327a0cc5b21eb7a54a83d0446acbc7b14e.tar.bz2 rneovim-3a9fd4327a0cc5b21eb7a54a83d0446acbc7b14e.zip | |
Merge #9258 'CI/travis: switch to Ubuntu 16.04'
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/common/test.sh | 2 | ||||
| -rwxr-xr-x | ci/install.sh | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh index a6afd1df4c..f1c5454e3f 100644 --- a/ci/common/test.sh +++ b/ci/common/test.sh @@ -83,7 +83,7 @@ valgrind_check() { asan_check() { if test "${CLANG_SANITIZER}" = "ASAN_UBSAN" ; then - check_logs "${1}" "*san.*" | asan_symbolize + check_logs "${1}" "*san.*" | $ASAN_SYMBOLIZE fi } diff --git a/ci/install.sh b/ci/install.sh index 4aefe22fb5..7efbaf33b5 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -8,10 +8,8 @@ if [[ "${CI_TARGET}" == lint ]]; then fi if [[ "${TRAVIS_OS_NAME}" == osx ]]; then - brew install ninja - brew install gettext - brew reinstall libtool brew install ccache + brew install ninja export PATH="/usr/local/opt/ccache/libexec:$PATH" fi |