[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
|
||||
|
||||
source bootstrap.sh
|
||||
ccache --version
|
||||
ccache -p || true
|
||||
ccache --show-stats || true
|
||||
./configure CC="clang-${LLVM_VERSION}" CXX="ccache clang++-${LLVM_VERSION} -Qunused-arguments"
|
||||
CCACHE=$(pwd)/mason_packages/.link/bin/ccache
|
||||
${CCACHE} --version
|
||||
${CCACHE} -p || true
|
||||
${CCACHE} --show-stats || true
|
||||
./configure CC="clang-${LLVM_VERSION}" CXX="${CCACHE} clang++-${LLVM_VERSION} -Qunused-arguments"
|
||||
make
|
||||
make test
|
Loading…
Reference in a new issue