CRM and CX Blogs by Members
Find insights on SAP customer relationship management and customer experience products in blog posts from community members. Post your own perspective today!
cancel
Showing results for 
Search instead for 
Did you mean: 
4,669

Introduction


SAP has recently released Commerce Cloud build APIs for SAP Commerce Cloud V2 (CCV2) to trigger and track builds. So far the build and deployment process has been manual in SAP Commerce Cloud through the Cloud portal. I developed a Proof of concept (POC) to implement build automation in CCV2 using the above APIs.

Overview


Through this POC, I have experimented initiating a code build automatically in CCV2 when some code is pushed/merged to the main branch thus delivering the continuous integration feature which is missing in CCV2. I further extended this by trying out continuous delivery and deployment.

I have leveraged Cloud Functions from Google Cloud Platform to implement this POC, Most likely the same kind of implementation can be done in any CI/CD tools which can call REST APIs.

How it is really done


The flow starts with the developer merging or pushing some code to the main branch in Bitbucket, which triggers a cloud function in Google Cloud Platform, that communicates with the SAP Commerce Cloud build platform through a series of API calls, that builds the code pushed to the main branch and deploys the build into the Commerce environment.



Let’s dive a little deeper


I have created a cloud function in Google cloud platform that uses an HTTP trigger. Then I have created a webhook in Bitbucket which triggers the cloud function when some code is pushed or merged into the main branch. 

Within the cloud function, there is logic to call createBuild REST API which notifies SAP Commerce Cloud Build Platform to pull the latest code from the main branch and trigger a code build and returns the build ID to the cloud function. Using the build ID got from the API response, the cloud function then checks if the build is completed using getBuild REST API. Based on the build completion response from the API, the cloud function then triggers a code deployment of the newly created build in SAP Commerce Cloud Build Platform using the createDeployment REST API.



Conclusion


In SAP Commerce Cloud Portal, the build and deployment have been a manual process so far. This POC automates this process through Continuous integration, delivery and deployment using the newly released Commerce Cloud build APIs. There are few downsides needing to call multiple APIs one to create build, another to check if the build is completed and the last one to create a deployment with the build, but if there was a single API which does all of these operations it would have been much more intuitive.

The next steps are to integrate this POC with slack (the communication channel I mainly use) to provide notifications on the build and deployment progress as this is something that is not available out of the box in the current SAP Commerce Cloud.

Reference


Commerce Cloud API Documentation - SAP Help Portal

Documentation on how to authenticate to cloud API - API Tokens
2 Comments
Labels in this area