mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
14 lines
236 B
Bash
Executable File
14 lines
236 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
|
|
export PATH=/usr/lib/ccache/:$PATH
|
|
ccache --show-stats
|
|
fi
|
|
|
|
set +ex
|