ocurrent VS z-run

Compare ocurrent vs z-run and see what are their differences.

ocurrent

Keeps things up-to-date (a CI/CD pipeline OCaml eDSL) (by ocurrent)

z-run

z-run -- scripting library lightweight Go-based tool (by volution)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
ocurrent z-run
2 3
135 35
0.7% -
7.1 7.3
3 months ago 3 months ago
OCaml Go
Apache License 2.0 -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

ocurrent

Posts with mentions or reviews of ocurrent. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-22.
  • GitHub Actions could be so much better
    21 projects | news.ycombinator.com | 22 Sep 2023
    Y axis is tool selection. Positive region of axis is “use a DSL”, lower region is “use a GeneralPurposeProgrammingLanguage”

    The line starts at the origin, has a SMALL positive bump, than plummets downwards near vertically.

    Gets it right? Tools like ocurrent (contrasted against GH actions) [1], cdk (contrasted against TF yaml) [2]

    Gets it wrong? Well, see parent post. This made me so crazy at work (where seemingly everyone has been drinking the yaml dsl koolaide) that i built a local product simulator and yaml generator for their systems because “coding” against the product was so untenable.

    [1] https://github.com/ocurrent/ocurrent/blob/master/doc/example...

  • Show HN: Automation the KISS way. No YAML involved
    6 projects | news.ycombinator.com | 25 Mar 2022
    Keep working on this. It’s a splendid idea. Would be cool to eventually have a recipe where you import the crate, then program the deploy in rust, invoking your tool which builds my-build.rs, or a proper cargo build.

    The following not true apples to apples, but pretty close. Rather than another crummy stringy DSL, the ocaml community said “we want to program our CI pipelines in OCaml”. So, they created https://github.com/ocurrent/ocurrent. You build your pipeline in an incredible language—then the CI server simply invokes your pipeline code, assuming you’ve implemented a basic interface.

z-run

Posts with mentions or reviews of z-run. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-25.
  • Show HN: Z-run – scripting library lightweight tool
    1 project | news.ycombinator.com | 26 Jul 2022
  • Show HN: Automation the KISS way. No YAML involved
    6 projects | news.ycombinator.com | 25 Mar 2022
    I couldn't agree more with you about Ansible... I've started using Ansible in two projects, and I think it was enough for me... Ansible is perhaps great when you have granular tasks, that maybe don't need to communicate between them, or perhaps that don't have too much logic (or worse loops). However, as soon as your Ansible "scripts" start becoming actual "scripts", everything gets out of hand... (Also the performance is terrible due to the fact that each task is "bundled" on the host, copied remotely, extracted, executed, deleted, repeat for each and every instance of the same task...)

    ----

    Now about your `tricorder`, by looking at the readme, I gather it just allows one to run the same command over multiple hosts (filtered by name or tag), but nothing beyond that? How could one run for example a pipeline of tools on the remote hosts? (I assume `bash -c 'tool-1 | tool-2'`, but with careful escaping?)

    Perhaps a first step towards actually being an "Ansible replacement" would be to bring back in some "scripting" ability. For example instead of giving each command as arguments, there could be a "library of scripts", and the user can choose one of those to run on each remote host. Then those scripts could be written in whatever language the user chooses (`bash`, Python, Ruby, etc.)

    Also, with regard to the "library of scripts", one thing that Ansible got right is the possibility to put multiple different tasks in the same file, thus one doesn't need 20 files for 20 small tasks, but instead these can be put inside the same YAML file.

    ----

    For example this is how I did it in my own "Ansible replacement", <https://github.com/volution/z-run>, like for example, one can write something like these snippets: <https://github.com/volution/z-run/blob/development/examples/...> (see `ssh / launch / simple` that runs locally which just calls `z-run ssh "${_target}" ':: ssh / remote / main' "${@}"`, which is in itself a non trivial `bash` script, one that will run remotely.)

    In the end, what I think we need, is a tool to easily run "scripts" on a remote system, but make it as easy to use as it would be on the local machine. (Sort of like the RPC but across SSH and for scripts.)

  • In support of single binary executable packages
    10 projects | news.ycombinator.com | 2 Mar 2022
    Good point!

    I'll add to that READMEs, LICENSEs, SBOMs (Software Bill of Materials), example configuration files, etc. How to supply all those files when all one gets is a single binary executable?

    Simple! Bundle everything in the executable.

    As a bonus, because the tool outputs these files, it can now generated them dynamically. For example instead of a bland configuration file, with all the possible integrations commented out, it could either try to auto-detect where it's running and what's available, or present the user with a question-answer session to fill in the details.

    ----

    For example, a pet project of mine <https://github.com/volution/z-run>:

    z-run --readme # shows the README with `less` (if on TTY) or to `stdout`

    z-run --readme-html # for the HTML version to be opened in `lynx`

    z-run --manual # or --manual-man or --manual-html

    z-run --sbom # or --sbom-json or --sbom-html

    It even gives you the source code:

    z-run --sources-cpio | cpio -t

    So, does your tool need a `.desktop` file? Just create a flag for that.

    Or, if there are too many such extra files needed to be placed wherever provide an `--extras-cpio` and dump them as an archive, or if placing them requires some work, provide an `--extras-install`, but before `sudo`, kindly ask the user for permission.

    Granted all this requires some extra work, and increases the bulkiness of the executable, but:

    * all that extra code can be extracted into a common library; (I intend to do that for my software;)

    * if all these are compressed, especially being text-only, they are a fraction of the final executable;

    ----

    I am especially proud of the `--sources-cpio` option. Is something broken with a particular version of the tool that you rely on? Great, instead of bumbling around GitHub to find the particular commit that was used to build this particular version, I can just get the sources from my tool and use those. All I need is the build tools, which in case of Go is another `.tar.gz`.

What are some alternatives?

When comparing ocurrent and z-run you can also consider the following projects:

github-actions-typing - Bring type-safety to your GitHub actions' API!

rust-opendingux-test - OpenGL on RG350M demo

act - Run your GitHub Actions locally 🚀

tricorder - Automation the KISS way