mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
77fa75b1ec
Signed-off-by: FluorineDog <guilin.gou@zilliz.com>
14 lines
396 B
Bash
Executable File
14 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export CCACHE_COMPRESS=${CCACHE_COMPRESS:="1"}
|
|
export CCACHE_COMPRESSLEVEL=${CCACHE_COMPRESSLEVEL:="5"}
|
|
export CCACHE_COMPILERCHECK=${CCACHE_COMPILERCHECK:="content"}
|
|
export CCACHE_MAXSIZE=${CCACHE_MAXSIZE:="2G"}
|
|
export CCACHE_DIR=${CCACHE_DIR:="${HOME}/.ccache"}
|
|
export http_proxy="http://proxy.zilliz.tech:1088"
|
|
export https_proxy="http://proxy.zilliz.tech:1088"
|
|
|
|
set +ex
|