Ubuntu – How to enable ccache on cicd
I'm trying to enable ccache on gitlab cicd. I want to aciviate the ccache shared between all branches I added this code to the dockerfile: RUN apt update -y && apt upgrade -y && apt install -y ccache ENV CCACHE_CPP2=yes…