How to create CI CD pipline for nopcommerce 4.6 project in .net
Community moderators have prevented the ability to post new answers.
Hi Krishi and welcome to the community!
I'm not familiar with nopCommerce, but I just wanted to give you some context: Pipelines builds that run on Atlassian infrastructure use Docker containers. For every step of your build, a Docker container starts (the build container) using the image you have specified in your bitbucket-pipelines.yml file. We support public and private Docker images including those hosted on Docker Hub, AWS, GCP, Azure, and self-hosted registries accessible on the internet. The commands in each step of your bitbucket-pipelines.yml file are Linux commands that you would use on a Linux machine.
If you can use Linux commands to run your tests then it may be possible to use them in a Docker container in Bitbucket Pipelines. Please note that if your build needs tools that are not already preinstalled on the Docker image you use as a build container, you will need to install them during the build.
These things also apply if you use a Linux Docker self-hosted runner. In case you use a Linux Shell, Windows, or MacOS runner, the builds run directly on the host machine so any tools the build needs need to be installed on the host machine.
I found the following post on nopCommerce's forum from another user who uses Bitbucket Pipelines. This may give you some pointers on how to get started:
For any questions specific to nopCommerce or dotnet, it may be best to reach out to a forum specific to these products.
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.