gotaskr VS Task

Compare gotaskr vs Task and see what are their differences.

gotaskr

A generic task runner for Go (by Roemer)

Task

A task runner / simpler Make alternative written in Go (by go-task)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
gotaskr Task
8 113
17 10,017
- 4.9%
6.9 9.6
about 2 months ago 4 days ago
Go MDX
MIT License MIT License
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.

gotaskr

Posts with mentions or reviews of gotaskr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-10.
  • Generic Task Runner in Go -> gotaskr
    1 project | /r/golang | 20 Aug 2023
    Feel free to head over to GitHub and check the wiki for more details and I would be happy to get feedback or improvement ideas for gotaskr.
  • Build / Makefile templates for Go monorepo?
    2 projects | /r/golang | 10 May 2023
    I created https://github.com/Roemer/gotaskr for that and we are very happy with it for a very complex build system. Give it a try if you want.
  • Is your makefile supposed to be a justfile?
    17 projects | /r/golang | 2 Mar 2023
    May I present my alternative https://github.com/Roemer/gotaskr It is kind of similar to magefile but provides some other features similar to cake build and inbuilt tools useful for devops. And also it is a plain go program so no magic compilation in the background. It replaced basically 100 bash files in our rather complex build/deploy setup. Sometimes a declarative approach is just not enough.
  • Unpopular opinion: CI/CD engines are an awful idea
    6 projects | /r/devops | 4 Feb 2023
    I have used many CI systems on large scale and to be honest, Jenkins is still my favorite. Everything you need is provided and works. You have 100% control over the workflow. With code. All those declarative yaml based ones need sooooo much workarounds to get more complex workflows to run and often you are just stuck with a less optimal solution. Beside the build workflow, we do not write any build logic in the ci engine but use external code runners instead. For .Net I used Cake or Nuke build for example but now my absolute preference for build logic is go. There we use a task runner like gotaskr. This helps having the build logic centralized and usually you can also run different build tasks locally to debug and test them. Also with go, you don‘t need any runtime to run the logic. Just build the task runner once and then you can copy the binary anywhere (eg for parallel build tasks) and just run it. This is optimal to integrate it in Docker base builds so you don‘t need to change the base image at all.
  • Task runner like go-task/task, but in pure Go, no external DSLs
    5 projects | /r/golang | 2 Feb 2023
    May I present my solution: https://github.com/Roemer/gotaskr Heavily inspired by cake build. It has no compile magic anywhere. Just write your go file and run the tasks in it. Or build it and re-use it in a ci for example.
  • Utility library, most gopher way for namespaces/packages
    3 projects | /r/golang | 27 Oct 2022
    The current refactoring is in: https://github.com/Roemer/gotaskr/tree/feature/toolsrefactoring
  • Any open source projects need help ?
    19 projects | /r/golang | 7 Oct 2022
    I'm a go youngling that tried to create a task runner (inspired by cake build for .net) in go as an alternative to magefile. What I would like is to get some feedback about how it is implemented and if there are go-principles that are violated and where the code should be improved. So if you want to do some reviewing, feel free to have a look at https://github.com/Roemer/gotaskr

Task

Posts with mentions or reviews of Task. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-04.
  • Show HN: Workflow Orchestrator in Golang
    7 projects | news.ycombinator.com | 4 Mar 2024
    So many tools in this space! This one looks a little bit like go-task, but it seems maybe better for production workflows because if timeout support, while go-task seems more aimed to command line work/makefile replacement.

    —-

    https://github.com/go-task/task

  • Essential Command Line Tools for Developers
    29 projects | dev.to | 15 Jan 2024
    View on GitHub
  • Task: A task runner / alternative to GNU Make
    1 project | news.ycombinator.com | 26 Dec 2023
  • Using Make – writing less Makefile
    6 projects | news.ycombinator.com | 26 Dec 2023
    A similar tool is `task` https://taskfile.dev/ . It is quite capable and also a single executable. I've grown to quite like it.
  • What’s with DevOps engineers using `make` of all things?
    17 projects | /r/devops | 6 Dec 2023
    check out tasks - a bit of a learning curve but arguably more powerful imo
  • Go Development with Hot Reload Using Taskfile
    2 projects | dev.to | 11 Nov 2023
    That's when I came across taskfile.dev. Task is an automation tool designed to be more accessible than other options, such as GNU Make.
  • Poetry (Packaging) in motion
    2 projects | dev.to | 27 Sep 2023
    Full disclosure, I did not review Conda or Hatch fully. Not that there is anything explicitly wrong with either of them. Conda is too specific to the scientific community for my general taste. Hatch seems to go well with Conda and also uses the PyProject manifest as well. It's nice that it gives you several built in tools, similar to commit hooks, but I tend to like to roll my own via a Taskfile and run them with Poetry.
  • Building RESTful API with Hexagonal Architecture in Go
    21 projects | dev.to | 27 Sep 2023
    Taskfile is a tool for streamlining repetitive development tasks. It helps automate activities like building, testing, and deploying applications. Unlike Makefile, Taskfile uses YAML for configuration, making it more readable and user-friendly.
  • We built the fastest CI in the world. It failed
    11 projects | news.ycombinator.com | 12 Sep 2023
    9. We test everything with another promotion which runs make targets which build docker containers to run python scripts (pytest)

    This is also built by a complicated web of wildcarded makefile targets, which need to be interoperable and support a few if/else cases for specific components.

    My plan is to migrate all of this to something simpler and more straightforward, or at least more maintainable, which is honestly probably going to turn into taskfile[0] instead of makefiles, and then simple python scripts for the glue that ties everything together or does more complex logic.

    My hope is that it can be more straightforward and easier to maintain, with more component-ized logic, but realistically every step in that labyrinthine build process (and that's just the open-source version!) came from a decision made by a very talented team of engineers who know far more about the process and the product than I do. At this point I'm wondering if it would make 'more sense' to replace it with a giant python script of some kind and get access to all the logic we need all at once (it would not).

    [0] https://taskfile.dev/

  • Exploring GCP With Terraform: Setting Up The Environment And Project
    7 projects | dev.to | 20 Aug 2023
    task - a task runner and a replacement for make

What are some alternatives?

When comparing gotaskr and Task you can also consider the following projects:

weaver - Programming framework for writing and deploying cloud applications.

just - 🤖 Just a command runner

go-gitlab - GitLab Go SDK

doit - task management & automation tool

kertish-dfs - Kertish-dfs is a simple distributed storage platform, implements file storage on a single distributed computer cluster, and provides interfaces for file/folder handling. Kertish-dfs aims primarily for completely distributed operation without a single point of failure, scalable to the exabyte level.

goreleaser - Deliver Go binaries as fast and easily as possible

devtron - Tool integration platform for Kubernetes

boilr - :zap: boilerplate template manager that generates files or directories from template repositories

ziti - The parent project for OpenZiti. Here you will find the executables for a fully zero trust, application embedded, programmable network @OpenZiti

JobRunner - Framework for performing work asynchronously, outside of the request flow

mkdkr - mkdkr = Makefile + Docker

taskctl - Concurrent task runner, developer's routine tasks automation toolkit. Simple modern alternative to GNU Make 🧰