You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
330 B
10 lines
330 B
# common ccache env vars for CI |
|
export CCACHE_SLOPPINESS=file_stat_matches |
|
|
|
mkdir -p ~/.ccache |
|
echo "base_dir = ${GITHUB_WORKSPACE}" > ~/.ccache/ccache.conf |
|
echo "compression = true" >> ~/.ccache/ccache.conf |
|
echo "compression_level = 6" >> ~/.ccache/ccache.conf |
|
echo "max_size = 400M" >> ~/.ccache/ccache.conf |
|
ccache -s |
|
ccache -z
|
|
|