sedyh
sedyh
TTask
Created by sedyh on 3/31/2025 in #help
Run command for each source found by pattern without find.
I.e. I want to allow this syntax, I think I can make a PR...
version: '3'

tasks:
gen:
sources:
- protocol/**/*.proto
generates:
- pkg/protocol/**/*.pb.go
status:
- for: generates
cmd: test -f {{.ITEM}}
cmds:
- buf generate
version: '3'

tasks:
gen:
sources:
- protocol/**/*.proto
generates:
- pkg/protocol/**/*.pb.go
status:
- for: generates
cmd: test -f {{.ITEM}}
cmds:
- buf generate
9 replies
TTask
Created by sedyh on 3/31/2025 in #help
Run command for each source found by pattern without find.
@andreynering, is it possible to do the same with generates? I want to bypass missing fingerprinting by using status: test -f {{.ITEM}} for each file from generates: - pkg/protocol/**/*.
9 replies
TTask
Created by sedyh on 3/31/2025 in #help
Task is not tracking deleted generated files
It seems to me that generated files really needs a full-fledged fingerprinting.
8 replies
TTask
Created by sedyh on 3/31/2025 in #help
Task is not tracking deleted generated files
Can we make the Task to restart the task in this case too?
8 replies
TTask
Created by sedyh on 3/31/2025 in #help
Task is not tracking deleted generated files
Probably related: https://github.com/go-task/task/pull/1816 @andreynering (sorry for ping)
8 replies
TTask
Created by sedyh on 3/31/2025 in #help
Task is not tracking deleted generated files
Hello. I've managed to reproduce the issue. Let me show you a better example:
version: '3'

tasks:
gen:
sources:
- protocol/**/*
generates:
- pkg/protocol/**/*
cmds:
- mkdir -p pkg/protocol/google
- touch pkg/protocol/google/important.pb.go
- mkdir -p pkg/protocol/core
- touch pkg/protocol/core/important.pb.go
clean:
cmds:
- rm -rf pkg/protocol/core
make:
cmds:
- mkdir -p protocol/google
- touch protocol/google/important.proto
- mkdir -p protocol/core
- touch protocol/core/important.proto
version: '3'

tasks:
gen:
sources:
- protocol/**/*
generates:
- pkg/protocol/**/*
cmds:
- mkdir -p pkg/protocol/google
- touch pkg/protocol/google/important.pb.go
- mkdir -p pkg/protocol/core
- touch pkg/protocol/core/important.pb.go
clean:
cmds:
- rm -rf pkg/protocol/core
make:
cmds:
- mkdir -p protocol/google
- touch protocol/google/important.proto
- mkdir -p protocol/core
- touch protocol/core/important.proto
ls pkg/protocol
core google

task gen
task: Task "gen" is up to date

task clean
task: [clean] rm -rf pkg/protocol/core

ls pkg/protocol
google

task gen
task: Task "gen" is up to date
ls pkg/protocol
core google

task gen
task: Task "gen" is up to date

task clean
task: [clean] rm -rf pkg/protocol/core

ls pkg/protocol
google

task gen
task: Task "gen" is up to date
The question is why task is up to date after deleting a directory with a file ( pkg/protocol/core/important.pb.go) that matches pkg/protocol/**/* pattern?
8 replies
TTask
Created by sedyh on 3/31/2025 in #help
Task is not tracking deleted generated files
Thats strange. The issue states it should track deleted files, but not edited, IIUC.
8 replies
TTask
Created by sedyh on 3/31/2025 in #help
Run command for each source found by pattern without find.
Yay, it works, thanks. So thats typo in the docs?
9 replies
TTask
Created by sedyh on 3/31/2025 in #help
Run command for each source found by pattern without find.
Like this? Hmm, its not showing me anything... I have files in internal. My version is: v3.42.1
gen:
sources:
- internal/*
cmds:
- for: source
cmd: echo {{.ITEM}}
gen:
sources:
- internal/*
cmds:
- for: source
cmd: echo {{.ITEM}}
9 replies
TTask
Created by sedyh on 5/22/2024 in #help
Supply non-constant arguments to dynamic variable
But it will still print the exit status, right?
13 replies
TTask
Created by sedyh on 5/22/2024 in #help
Supply non-constant arguments to dynamic variable
No description
13 replies
TTask
Created by sedyh on 5/22/2024 in #help
Supply non-constant arguments to dynamic variable
I know we had issue for reworking --silent flag, but maybe there are workarounds?
13 replies
TTask
Created by sedyh on 5/22/2024 in #help
Supply non-constant arguments to dynamic variable
Btw, can we also ignore error code printing from task?
13 replies
TTask
Created by sedyh on 5/22/2024 in #help
Supply non-constant arguments to dynamic variable
Oh, so all I was need is to make variable static...
13 replies