I am trying to find a way to enable CI/CD for C++ app. Is there a way to configure BitBucket Pipelines to trigger an on-prem build and capture the status?
You can use docker images within Pipelines that support building C++ (I think gcc for example) and not have to have servers running on-prem. If you really need on-prem, you can either trigger off a webhook or create a pipeline that uses curl to connect to your on-prem server. It could block to report the status or your on-prem server could call back to Bitbucket to set the status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.