aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2020-09-06 12:52:37 -0400
committerGitHub <noreply@github.com>2020-09-06 12:52:37 -0400
commitd6b280799fb873dfc40b8012d40d0bb54bc9d588 (patch)
treee375e6659e9426c51420cd944c01d9be72e8b3c3 /ci
parentc3e6b6119cbcd1dc49a398074fa57b7467245c5e (diff)
parent83a7b1b5db99be8017dfd4f84d995035dd3b414e (diff)
downloadrneovim-d6b280799fb873dfc40b8012d40d0bb54bc9d588.tar.gz
rneovim-d6b280799fb873dfc40b8012d40d0bb54bc9d588.tar.bz2
rneovim-d6b280799fb873dfc40b8012d40d0bb54bc9d588.zip
Merge pull request #12802 from jamessan/travis-ubuntu-bump
Diffstat (limited to 'ci')
-rwxr-xr-xci/before_install.sh2
-rw-r--r--ci/common/test.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/before_install.sh b/ci/before_install.sh
index 1cf60edf73..c3fd8bdbde 100755
--- a/ci/before_install.sh
+++ b/ci/before_install.sh
@@ -22,7 +22,7 @@ if [[ "${TRAVIS_OS_NAME}" != osx ]] && command -v pyenv; then
echo 'Setting Python versions via pyenv'
# Prefer Python 2 over 3 (more conservative).
- pyenv global 2.7.15:3.7.1
+ pyenv global 2.7:3.8
echo 'Updated Python info:'
(
diff --git a/ci/common/test.sh b/ci/common/test.sh
index b2fbeaf2da..4ef6260339 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -82,7 +82,7 @@ valgrind_check() {
check_sanitizer() {
if test -n "${CLANG_SANITIZER}"; then
- check_logs "${1}" "*san.*"
+ check_logs "${1}" "*san.*" | ${SYMBOLIZER:-cat}
fi
}