Early in our development of the SimpleRPG game project, we set up a continuous integration pipeline to automate our build with every repo check-in. Now we are going to set up another pipeline for our game services. Since the services are in their own repository and solution and have different deployment requirements, we will need … Continue reading Lesson 5.11: Create CI Pipeline for Azure Functions Project
Tag: Azure Pipelines
Lesson 5.3: Create Continuous Delivery Pipeline for Blazor app
Now that we have our game building automatically in Azure Pipelines and an Azure Storage account configured to host our application, we need to build an automated pipeline to deploy new builds to the desired storage account. We will do this by using the Releases pipeline in Azure DevOps. Similar to Continuous Integration (which we … Continue reading Lesson 5.3: Create Continuous Delivery Pipeline for Blazor app
Lesson 1.9: Azure Build Pipeline
Now that we have a Blazor app and test projects, we will create an automated build that will build our code whenever changes are committed into Azure DevOps. Automated builds ensure that any code check-ins always build on clean systems and all of our tests continue to run and pass continuously. Automated builds are an … Continue reading Lesson 1.9: Azure Build Pipeline
Azure DevOps Pipelines
I spent this long holiday weekend (who knew President's Day was a holiday? 🙂 ) reading and learning Azure DevOps Pipelines to help automate the build and release processes. I've used several build scripts before at work and even copied some to get a new library or service building, but I hadn't had the chance … Continue reading Azure DevOps Pipelines