[circleci] correct ccache path
This commit is contained in:
parent
75b57ab960
commit
d026d38047
1 changed files with 5 additions and 4 deletions
|
@ -4,9 +4,10 @@ set -e -u
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
source bootstrap.sh
|
source bootstrap.sh
|
||||||
ccache --version
|
CCACHE=$(pwd)/mason_packages/.link/bin/ccache
|
||||||
ccache -p || true
|
${CCACHE} --version
|
||||||
ccache --show-stats || true
|
${CCACHE} -p || true
|
||||||
./configure CC="clang-${LLVM_VERSION}" CXX="ccache clang++-${LLVM_VERSION} -Qunused-arguments"
|
${CCACHE} --show-stats || true
|
||||||
|
./configure CC="clang-${LLVM_VERSION}" CXX="${CCACHE} clang++-${LLVM_VERSION} -Qunused-arguments"
|
||||||
make
|
make
|
||||||
make test
|
make test
|
Loading…
Add table
Reference in a new issue