1 2 3 4 5 6 7 8
#!/bin/bash if command -v sccache; then export RUSTC_WRAPPER="sccache" export CXX="sccache clang++" fi cargo test -vv --all