ci: increase ccache size

make based builds require more space
insert exception for sitltest
This commit is contained in:
Francisco Ferreira 2016-05-25 18:23:36 +01:00 committed by Lucas De Marchi
parent 1e44251d35
commit ec0a80b6f4

View File

@ -30,8 +30,10 @@ fi
if [[ "$CI_BUILD_TARGET" == *"px4"* ]]; then
export CCACHE_MAXSIZE="1500M"
elif [[ "$CI_BUILD_TARGET" == "sitltest" ]]; then
export CCACHE_MAXSIZE="300M"
else
export CCACHE_MAXSIZE="500M"
export CCACHE_MAXSIZE="1000M"
fi
# special case for SITL testing in CI