The demo showcases a stage by stage approach towards creating a sophisticated CD/CI pipeline in GitHub Actions. We start from a simple shell script for web deployment and convert it to a rich workflow by adding features in iterations.
The solution to be deployed is a Todo app which does no more than allowing one to add and read todo items. There is no authentication implemented to reduce complexity and focus on the CD/CI aspect.
- Parallel Jobs
- Publishing and sharing build artifacts between jobs
- Fan-in / Fan-out
- Passing values to dependent jobs and between non-dependent jobs
- Creating and publishing releases on GitHub (Releases)
- Auto versioning using Git version
- Multi environment deployment with manual approval
- Code analysis using CodeQL (Security Overview)
- Code analysis using Sonar Cloud
- Azure deployment using biceps πͺ
To start with we have a simple shell script for Azure web deployment. The shell does 3 steps
- Builds and packages the Razor Web App and the Repository Web Api.
- Use az group deployment and biceps to create the azure infrastructure.
- Finally use webdeploy to deploys the apps.
Extract individual steps from the sh file and use GitHub actions to execute them. The immediate advantage is the rich logging and manageability compared to using a script based deployment.
Split the steps into independent jobs so tasks can run in parallel. For large projects this will drastically improve your build execution time. Also see how to pass build artifacts between jobs.
Each job runs in their own independent VM. So we need to use a common share to pass artifacts.
Each job runs in their own independent VM. So we need to use a common share to pass artifacts.
In the previous step, the web deployment would have failed if the build had not complete. A small step, add dependency between jobs to have more control on the execution.
Now we do some more parallelism and use output variables to pass data between dependent jobs. Example: passing the Web URI after the infrastructure is deployed to the job that deploys the app itself.
We can also use actions to Create and publish GitHub Releases. We use these tasks also to create a fan-in/fan-out design.
In this stage we add an auto versioning component [Git version](https://gitversion.net/) which can predict the next version using the commit messages (example, having a breaking keyword in the commit message will bump the major version number).
See 2 examples of adding analyzers
1. GitHubs own CodeQL - Uses a matrix strategy to analyze both csharp and javascript. This is really easy to setup from the GitHub Security tab and I almost did no change to the auto generated yml file.
2. Sonar cloud - Uses sonar cloud. Again, the set up was very simple, in terms of taking the yml file from [here]('https://docs.sonarqube.org/latest/analysis/github-integration') and customizing it to the project.
- Could not find a clean way to share data between jobs (that are not dependent on each other). Currently using cache but it requires a lot of plumbing work. I could not find a way to update/add data to an existing cache. As a result multiple cache had to be created. Cache also hold data between runs so you need a new key for every run which makes key management a bit tricky. Yet another way to share is by using the upload/download artifact feature but this will expose the data in the artifacts page of the build.
- Gated release only addresses manual approval. Also, could not find a way to block pull request based on build failure.
- Could not find a clean way to create sub-modules/templates. An option available is composite runs but this is very limited. Another option is workflow dispatch which can call another workflow - again this is not targeted at modularizing the template so need to try this out to understand the pros and cons.
- Self-hosted runners. I was not able to host multiple self-hosted runners in the same machine (my desktop). The run command throws an error if more than 1 runners from the same machine try to reach the repo. As a result I rely on the github-hosted runners at the cost of performance (most tools needs to be reinstalled for every run).
- A way to modularize templates. Also ability to associate modularized templates to environments will be a good addition.
- Creating and sharing variables between jobs and workflows.
- More integration in environments for checks and gates, ex. webhooks, app insights monitoring etc.. (similar to azure devops) but in a more open sourcey way..
- Similar to azure policies that can be applied on ARM templates, it will be good to have a Policy engine that evaluates build templates. actions can be allowed and denied which makes it much more manageable for large organizations.
- Fork the repo
- Update the variables inside the yml files. Few yml files need
RESOURCE_GROUP
to be updated. Rest of them picks it up from the Secrets section - Create a Azure Resource Group
- Execute
az ad sp create-for-rbac --name "<sp_name>" --role contributor --scopes /subscriptions/<subscription_id>/resourceGroups/<rg_name> --sdk-auth
to create a service principal and copy the output JSON. - Paste it into GitHub Secrets under the name
AZURE_CREDENTIALS
- Create a secrete
PARAM_FILE
with the relative path to param file (for this repo it will be ./src/todo.infra/azuredeploy.parameters.dev.json) - One more secret
RESOURCE_GROUP
with the resource name created in step 3
GitHub Actions helps you with not just automating the CD/CI tasks but tasks in around the whole repo like, tracking issues, auto replying to comments and PR etc... This gives incredible opportunity for developers to automate repeated admin tasks.
This page is not yet complete...