What’s something you’ve gotten into your CICD pipeline recently that you like?

I recently automated a little bot for our GitHub CICD. It runs a few tests that we care about, but don’t want to block deployment, and posts them on the PR. It uses gh pr comment --edit-last so it isn’t spammint the channel. It’s been pretty helpful in automating some of the more annoying parts of code review.

  • @GJdan
    link
    4
    edit-2
    11 months ago

    We have strict data sovereignty requirements, so we do a lot of self hosting. We are also a kubernetes shop, so we’ve been using the Argo-CD / Argo Workflows combo. I quite like it, there’s a lot of freedom to spin up a container and do anything you want in it while passing results to the next step, it might be too much freedom for some folks though. CD systems have some variety to them since there’s so many ways to deploy code, but CI systems all feel pretty similar to me. The main differences are the format of the instructions you write for the system, and how much or how little it holds your hand.