2020-10-15 13:31:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2020-11-29 21:18:44 +00:00
|
|
|
export CCACHE_COMPRESS=${CCACHE_COMPRESS:="1"}
|
|
|
|
export CCACHE_COMPRESSLEVEL=${CCACHE_COMPRESSLEVEL:="5"}
|
|
|
|
export CCACHE_COMPILERCHECK=${CCACHE_COMPILERCHECK:="content"}
|
|
|
|
export CCACHE_MAXSIZE=${CCACHE_MAXSIZE:="2G"}
|
2020-10-15 13:31:50 +00:00
|
|
|
export CCACHE_DIR=${CCACHE_DIR:="${HOME}/.ccache"}
|
2020-11-29 21:18:44 +00:00
|
|
|
export http_proxy="http://proxy.zilliz.tech:1088"
|
|
|
|
export https_proxy="http://proxy.zilliz.tech:1088"
|
2020-10-15 13:31:50 +00:00
|
|
|
|
|
|
|
set +ex
|