mirror of https://github.com/milvus-io/milvus.git
11 lines
157 B
Bash
11 lines
157 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
export CCACHE_COMPRESS=1
|
||
|
export CCACHE_COMPRESSLEVEL=5
|
||
|
export CCACHE_COMPILERCHECK=content
|
||
|
export PATH=/usr/lib/ccache/:$PATH
|
||
|
|
||
|
set +ex
|