mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
13 lines
199 B
Bash
Executable File
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
|