• AggressivelyPassive@feddit.de
    link
    fedilink
    arrow-up
    29
    arrow-down
    1
    ·
    3 months ago

    I have to say, pretty much every CI/CD tool, build automation or whatever you want to call it, sucks.

    Somehow they all manage not to offer boilerplate actions since that would be too restrictive, yet they also stand in your way if you want to have advanced features.

    I often end up writing pipeline steps/jobs thinking “how is that not already built-in?”.

    And my absolutely biggest pain point: why the fuck is there not a single tool that lets me execute pipelines locally? Why do I have to have 200 commits all saying a variation of “pipeline test”?

    • BatmanAoD@programming.dev
      link
      fedilink
      arrow-up
      7
      ·
      3 months ago

      I agree so, so much; and I’ve been saying similar things for years.

      But I recognize that it’s probably a hard problem. For one thing, auth is almost never going to work the same way in CI as it does locally.

      …still, though, I feel like there could be some much nicer tooling here.

    • vvv@programming.dev
      link
      fedilink
      arrow-up
      4
      ·
      3 months ago

      The sentiment of the first half of your comment is the cause of the problem you describe in the second half. Why /should/ the CI tool have any “steps” built in? Use a task runner, or script in your repo for any task you expect CI to do. Configure CI to run the same command you would run locally.

      • SparrowRanjitScaur@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        edit-2
        3 months ago

        It’s not the same thing. Sometimes there are rules/conditions in the pipeline you need to test. Sometimes there are child pipelines. There really should be a way to simulate a pipeline run locally.

      • FizzyOrange@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        I totally agree, with some caveats:

        1. It can make the UI much nicer (though I agree there are probably better ways to do it, e.g. native support for letting the program output determine the UI).
        2. Sometimes you need to run different things on different machines/OSes, and it’s easier if you have separate steps there.