milvus/ci/travis/before-install.sh

14 lines
236 B
Bash
Raw Normal View History

2019-11-11 03:51:06 +00:00
#!/bin/bash
set -ex
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
export CCACHE_COMPRESS=1
export CCACHE_COMPRESSLEVEL=5
export CCACHE_COMPILERCHECK=content
2019-11-11 06:12:37 +00:00
export PATH=/usr/lib/ccache/:$PATH
2019-11-11 03:51:06 +00:00
ccache --show-stats
fi
set +ex