* Add ccache detection and use * Install ccache on Linux and OS X Azure Pipelines workers. * Enable ccache in GitHub Actions and Azure * Temporarily error on error, not warning, when checking R package * Several small simplifications based on draft pr review * Update .ci/linux-steps.yaml Co-authored-by: Ryan Curtin <ryan@ratml.org> * Call `make` without `VERBOSE=1` * Update .ci/macos-steps.yaml Co-authored-by: Ryan Curtin <ryan@ratml.org> * Update .ci/linux-steps.yaml Co-authored-by: Ryan Curtin <ryan@ratml.org> --------- Co-authored-by: Ryan Curtin <ryan@ratml.org>
6 lines
117 B
Plaintext
6 lines
117 B
Plaintext
CC=ccache gcc
|
|
CXX=ccache g++
|
|
CXX17=ccache g++ -Wno-deprecated-declarations
|
|
#CXX17=ccache g++
|
|
SHLIB_CXXLD=ccache g++
|