Does gitlab offer a stripped down version with only vanila 'git' ?
GitLab 13.0
31–40 of 87 posts
Re: GitLab 13.0
#32Re: GitLab 13.0
#33Does gitlab offer a stripped down version with only vanila 'git' ?
Re: GitLab 13.0
#34Exporting environment variables via artifacts sounds like a strange decision, but I guess its one way to do it. After years of waiting for jobs to communicate other then relying on file artifacts this is somewhat disappointing. I would like to see parent/child pipelines recive some love as currently it does work but quirks are all around. For example, its not easy (or sometimes even possible) to pass pipeline variabl…
For being THE feature that made gitlab big the whole CI area seems to be getting away from them
Re: GitLab 13.0
#35Exporting environment variables via artifacts sounds like a strange decision, but I guess its one way to do it. After years of waiting for jobs to communicate other then relying on file artifacts this is somewhat disappointing. I would like to see parent/child pipelines recive some love as currently it does work but quirks are all around. For example, its not easy (or sometimes even possible) to pass pipeline variabl…
The caching is so broken it's barely usable. You can't easily exclude files. The cache can't be updated incrementally. It's often slower than downloading all dependencies on every build.
Then wrap your job in a untar/tar:
tar --use-compress-program zstd -xf node_modules.tar.zst || true
YOUR NORMAL JOB
tar --use-compress-program zstd -cf node_modules.tar.zst node_modules
(and you can delete things you don't need if you want)Re: GitLab 13.0
#36Re: GitLab 13.0
#37Does gitlab offer a stripped down version with only vanila 'git' ?
Re: GitLab 13.0
#38Re: GitLab 13.0
#39Does gitlab offer a stripped down version with only vanila 'git' ?
You only need an SSH server for that.
Re: GitLab 13.0
#40I really hope some of the the project management tools and scanning features will trickle down to the cheaper/free tiers some time. I can understand that not everything has to be free but the current feature split of project management and scanning features among the tiers feels a bit haphazard with some crucial things at the highest prices, making it hard to justify the in-between tiers and impossible to buy the hig…
I wish they add some kind of addon system for these features.