What does CI / CD mean for the MR?

“You should wait until the CI/CD finish before to make the MR”
Hello how are you?
This was a comment that was placed on my challenge after not being approved, I don’t know what that means. If anyone can help me I would really appreciate it.

Hey there.

try reading https://docs.gitlab.com/ee/ci/, also make your own research on these kind of topics, this is part of the training process as well, self-education :wink:

Hi @suspicious-flame, try this

  1. Delete your branch before doing a new “push”
  2. Take a look at the pipelines, you need to WAIT until the button says passed, then you can go to repository >> branches and see a green check button next to the merge request bottom, now you can make the MR.

Please this is a must!
https://gitlab.com/autonomicmind/training/-/wikis/home

I hope it gives you a clue!

You got this.

1 Like

Delete the branch isn’t necessary if you make a reset when your CI/CD fails.

Is useful to know how works these commands:

  • $ git reset --soft
  • $ git reset --hard
  • $ git reset --mixed

You can read about that Here

2 Likes