Keep your pipelines simple, stupid

Thierry Lacour • 3 minutes • 2022-07-07

Keep your pipelines simple, stupid

Build pipelines like GitHub Actions, GitLab CI/CD and ol’ Jenkins have become ubiquitous these last few years. While they are certainly useful, it’s surprisingly easy to burn your fingers on them. Indulging yourself too much can leave you with a monstrous build that is difficult to maintain or debug, and impossible to run locally or migrate.

After having burnt my own fingers plenty, I’ve come to live by three simple rules that keep my build pipelines more manageable, and after inheriting my fair share of searing hot builds, it’s time I wrote these down and put them out there.

The three rules of build pipelines#

Here’s my three rules to keep my pipelines more manageable and my colleagues sane:

  1. Minimise dependencies on plugins and libraries
  2. Keep build logic out of the pipeline
  3. Limit layers of abstraction

1. Minimise dependencies on plugins and libraries#

Many platforms offer plugins or tool integrations that make it seductively easy to configure and run your tools for you. However, the flip side of that particular coin is often forgotten. For each plugin or custom action you use, you increase platform lock-in, introduce a new dependency, introduce a new attack vector, and add another build step you can’t run locally.

Do the dirty work, rather than delegating it.

Don’t:

1- name: build
2  uses: gradle/gradle-build-action@latest
3  with:
4    arguments: build
5
6- name: tag
7  uses: random-person-in-nebraska/useful-tagging-plugin@latest
8  with:
9    tag: $VERSION

Do:

1- name: build
2 run: ./gradlew build
3
4- name: tag
5 run: |
6  VERSION=$(git describe)
7  git tag -a $VERSION -m "Tagged by build pipeline"
8  git push origin $VERSION  

2. Keep logic out of the pipeline#

From invoking tools to actual scripting, it’s easy to jam it all into your pipeline, but this makes it difficult to run locally. Move such logic to build scripts and have your pipelines call those instead. This allows you to run and debug your build steps locally, and keeps your pipelines focused on the build flow.

Keep your pipeline stupid. The less it does, the better.

Don’t:

 1- name: test
 2 env:
 3  SECRET: ${{ secrets.UPLOAD_KEY }}
 4  MODULES_FOR_TEST: ${{ steps.check.outputs.* }}
 5 run: |
 6  for mod in $MODULES_FOR_TEST;
 7  do
 8   pytest modules/$mod/* -v --junitxml="$mod.xml"
 9   ./upload.py -name="$mod" -key="$SECRET" -file="$mod.xml"
10  done  

Do:

1- name: test
2 env:
3  SECRET: ${{ secrets.UPLOAD_KEY }}
4 run: |
5  ./scripts/test.sh --upload-key "$SECRET"  

3. Limit layers of abstraction#

There is value in encapsulating build steps in a script or build tool of sorts. However, adding tools is easier than removing them. Think twice before introducing yet another tool or abstraction layer. Keeping your build low to the ground makes it easier to understand, troubleshoot and modify.

No one wants to inherit a build that runs Make to call a bash script to spin up a Docker container which runs a Python script which…

Don’t:

1$ ls build/
2build.sh  call-test-scripts.sh  conanfile.py
3config.yml Dockerfile  env/  __init__.py  modules/
4run_build.py  TestReport.rb  test-scripts/

Do:

1$ ls build/
2Dockerfile Makefile README.md

Note: The author does not imply you should only use Docker/Make for everything, they are merely exemplifying flattening your build’s tool stack.

Summary#

Your build pipeline is part of your project. Try not to cut corners and be lazy with it, but keep it simple and down-to-earth. You’ll thank yourself in the long run, as will I when I don’t inherit yet another 20k line YAML behemoth.



Comments


Read similar posts

Event

2024-04-13

1 minutes

From DevOps Teams to Platform Teams and what did we solve?

Presenting at DevOps Malmö to share experiences on DevOps Teams and Platform Teams, and how to break the hype and become a real Platform Team (not just by name).

Blog

2024-01-24

13 minutes

How to secure Terraform code with Trivy

Learn how Trivy can be used to secure your Terraform code and integrated into your development workflow.

Blog

2023-12-07

11 minutes

Demystifying Service Level acronyms and Error Budgets

In this fundamental level blog post I will explain what different Service Level concepts mean and how to use them effectively in the software delivery process.

Sign up for our monthly newsletter.

By submitting this form you agree to our Privacy Policy