• fkn@lemmy.world
    link
    fedilink
    arrow-up
    133
    arrow-down
    3
    ·
    1 year ago

    I know this is a meme, but just in case someone doesn’t actually know. CI saves literally thousands upon thousands of dev hours a year, even for small teams.

    • CoderKat@lemm.ee
      link
      fedilink
      English
      arrow-up
      32
      ·
      1 year ago

      As annoying as it is when someone else breaks the CI pipeline on me, it is utterly invaluable for keeping the vast majority of commits from being able to break other people (and from you breaking others). I can’t imagine not having some form of CI to preventing merging bad code.

      • Eufalconimorph@discuss.tchncs.de
        link
        fedilink
        arrow-up
        4
        ·
        1 year ago

        Even better is when you restrict merges to trunk/main/master/develop (or whatever you call it) to only happen from the CI bot *after all tests (including builds for all supported platforms) pass. Nobody else breaks the CI pipiline, because breaking changes just don’t merge. The CI pipeline can test itself!

    • Jajcus@kbin.social
      link
      fedilink
      arrow-up
      31
      ·
      1 year ago

      And a lot of users’ frustration, especially on more niche platforms (Linux, ARM, etc.) - things look much better on release when the code have been regularly compiled and, hopefully tested, on all platforms, not just the one the lead developer uses.

    • engineZ@lemmy.today
      link
      fedilink
      arrow-up
      7
      arrow-down
      1
      ·
      1 year ago

      Probably also causes lots of hours of maintenance and troubleshooting…but it’s a net gain in the end.

      • fkn@lemmy.world
        link
        fedilink
        arrow-up
        21
        arrow-down
        1
        ·
        1 year ago

        I can’t even imagine not having a ci pipeline anymore. Having more than a single production architecture target complete with test sets, Security audits, linters, multiple languages, multiple hour builds per platform… hundreds to thousands of developers… It’s just not possible to even try to make software at scale without it.