Thank you very usefull! What is your advise for a library repo that trigger repos that consume that library. Now i recompile the library in each application to use the new version. Do you know a better way to do that?
@gabrielmarcondes98143 жыл бұрын
Did u find a answer?
@chongerwin2 жыл бұрын
Thank you very much!!
@AfmpJR6 ай бұрын
What you've been doing, Tomek?
@nayanar20233 жыл бұрын
Great video bro
@deltax26733 жыл бұрын
Hi @Tomik thanks for the video, I have case where 3 branch and he branch have own pipelines ( dev,qa, stg) am trying to build a docker image on qa pipeline then I push to registry. Now when I want to start qa pipeline I want to use available docker images from the registry is it possible to send pushed image information to next branch pipeline? FYI : docker images are tagged with commit sha and will get pushed to registry
@attilapinter71413 жыл бұрын
Wouldn't artifacts or cache do that for you? (In case you didn't solve it yet ^_^)
@PePTo-dx2yj2 жыл бұрын
I have many local config files but runs only one, why?
@davidpccode3 жыл бұрын
Hi there...great video thanks!! One question..in a feature branch is it recommended to execute the complete pipeline with each push? I'm thinking tha5 could be heavy..thanks again
@tomislater3 жыл бұрын
Hey, I would rather recommend to only build image/run tests. You can run some jobs only on master/develop branches for example.
@raghupathym252 жыл бұрын
How to trigger gitlab pipeline when commit to other branches except develop and master, also while merge to master branch? The below code is not working rules: - if: $CI_COMMIT_BRANCH != “master” - if: $CI_COMMIT_BRANCH != “develop” - if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == “master"
@tomislater2 жыл бұрын
I think you also have to provide `when` keyword?
@raghupathym252 жыл бұрын
@@tomislater in which line to add?
@aloncarmelly2823 жыл бұрын
thank you man !
@tomislater3 жыл бұрын
I hope it was useful! :)
@aloncarmelly2823 жыл бұрын
@@tomislater it is very much. One this i couldn't find. How to I run a test to one specific job? I want one line to extend from the build to the test while on another job in parallel have a different test
@tomislater3 жыл бұрын
@@aloncarmelly282 Hmm, you can use rules keyword I think: kzbin.info/www/bejne/mpXSo2BqhperqtE You can pass env variable to the pipeline and add IF in rules section in jobs and decide if you want to spawn this job or not.