GitLab CI preserve environment between build stages

后端 未结 3 1411
小蘑菇
小蘑菇 2021-01-17 11:28

I am working on a python project and using miniconda to manage my environment. I am using GitLab for CI with the following runner configuration

stages:
  - b         


        
3条回答
  •  感情败类
    2021-01-17 12:00

    You can use artifacts to pass files between build stages.

    However if the shared parts are environment stuff (i.e. it's not code you've written) then you probably should use a cache.

提交回复
热议问题