Cache in Gitlab CI

When using gitlab ci one might know the cache property. With defining cached files these are used for subsequent build (instead of downloading them again). This is extremly useful when using a docker executor, the shell executor doesn’t need a cache as long as a build doesn’t remove downloaded or generated artifacts. But the build can only cache artifacts in the current working directory, so you can’t cache e.g. the local . [Read More]