Open MrAolen opened 1 week ago
Hi !
Thanks for this beautiful DSL to create Gitlab CI pipeline.
I would to create multiple cache on a job. You can have an example right here in official documentation : https://docs.gitlab.com/ee/ci/caching/#use-multiple-caches :
test-job: stage: build cache: - key: files: - Gemfile.lock paths: - vendor/ruby - key: files: - yarn.lock paths: - .yarn-cache/ script: - bundle config set --local path 'vendor/ruby' - bundle install - yarn install --cache-folder .yarn-cache - echo Run tests...
Is there a way to define mutiple caches with something that I missed?
Best regards !
Hi!
This DSL was not updated for some time, so this might have changed. I hope I will have some time this week and I'll take a look, it should be easy to add
Hi !
Thanks for this beautiful DSL to create Gitlab CI pipeline.
I would to create multiple cache on a job. You can have an example right here in official documentation : https://docs.gitlab.com/ee/ci/caching/#use-multiple-caches :
Is there a way to define mutiple caches with something that I missed?
Best regards !