Skip to content
#

task-runner

Here are 426 public repositories matching this topic...

drewsilcock
drewsilcock commented Nov 30, 2020

I have a build task that takes in variables to decide which platform to build for.

I'm trying to find some way to tell Task that the job is up-to-date using the standard sources checksum plus also checking whether the platform variables have changed.

I can get one to work at a time, but not both as the status commands seem to take precedence over the sources meaning if you specify comman

schettino72
schettino72 commented Jun 29, 2019

doit already support Task parameters, but they are not convenient to be used with task-groups.

Example of proposed feature:

from doit import task_param

@task_param({'name':'param1', 'short':'p', 'default':'default value'})
def task_py_params(param1):
    for name in ['foo', 'bar']:
        yield {
            'name': name,
            'actions':['echo {}'.format(param1)],
   
hela

🍦 Powerful software development experience and management. Enhancing @tc39 JS, @denoland and @nodejs, because we need a bit of magic. You can think of it as Cargo for the JavaScript ecosystem.

  • Updated Jan 31, 2021
  • JavaScript

Improve this page

Add a description, image, and links to the task-runner topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the task-runner topic, visit your repo's landing page and select "manage topics."

Learn more