milvus/ci/travis/before-install.sh
2019-11-11 11:51:06 +08:00

13 lines
199 B
Bash
Executable File

#!/bin/bash
set -ex
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
export CCACHE_COMPRESS=1
export CCACHE_COMPRESSLEVEL=5
export CCACHE_COMPILERCHECK=content
ccache --show-stats
fi
set +ex