How To Setup A Bitbucket CI/CD Pipeline

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 พ.ย. 2024

ความคิดเห็น • 15

  • @DhavalAhir10
    @DhavalAhir10 7 หลายเดือนก่อน +1

    When we define
    'pull-requests':
    develop:
    - - - extra code
    Here in this case pull request run based on source branch and not a destination.
    From the above code, when you create PR from develop to master ( which is very common in industries) at that time your pipeline will run.
    But when someone raised PR from feat/notification_update to develop.
    At that time Pipeline will not work.
    Pipelines 'pull-request' is based on source branch & not a destination based.

  • @ryrilya2289
    @ryrilya2289 5 หลายเดือนก่อน +1

    Thanks! Very helpful guide for a beginner in these topics

    • @self-taughtdev
      @self-taughtdev  5 หลายเดือนก่อน +1

      Glad it was helpful!

  • @badiaamakhlouf9526
    @badiaamakhlouf9526 20 วันที่ผ่านมา +1

    using this pull-request: and branches under it I am sure that a pull request will be created each time I commit new code? in case no so how to be sure that each time I push new code a pull request will be created or updated

    • @self-taughtdev
      @self-taughtdev  19 วันที่ผ่านมา

      I'm going to guess you mean you've got an existing PR up, and you want to make sure it creates a new build/runs your pipeline every time you commit code to the branch in that PR? If so, you should be able to just commit & push up your changes -> Go to pipelines in bitbucket -> and there should be a new build taking place.

  • @juanmacias5922
    @juanmacias5922 10 หลายเดือนก่อน

    Thanks, this was super helpful, I've been wondering how CI/CD pipelines worked.

  • @dialvec
    @dialvec 3 หลายเดือนก่อน

    So clear.... amazing!!!!!!

  • @sumitava1374
    @sumitava1374 12 วันที่ผ่านมา

    how can we setup aws aurora mysql through this bitbucket pipeline?

    • @self-taughtdev
      @self-taughtdev  8 วันที่ผ่านมา

      If your using JavaScript you can just put a script in your package json and run that script in your pipe

  • @kksaurab
    @kksaurab หลายเดือนก่อน

    This is only for CI. What about CD?

    • @self-taughtdev
      @self-taughtdev  หลายเดือนก่อน

      CD depends on where you're deploying to. For example if you're throwing it on firebase, you'd just add your commands to deploy to firebase in one of the steps in the yaml file and include it in the appropriate step.

  • @stockspartan4731
    @stockspartan4731 10 หลายเดือนก่อน

    Nice!