ci/tasks/readme: register fleet
All checks were successful
release-tools / build-release (push) Successful in 2m27s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011KikHkfCiC3yELbsMN8fT9
This commit is contained in:
2026-08-07 01:02:53 +02:00
parent ea06442d44
commit 4bae7bfb72
5 changed files with 34 additions and 6 deletions

27
.vscode/tasks.json vendored
View File

@@ -241,6 +241,30 @@
"$go"
]
},
{
"label": "build fleet",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/fleet .",
"options": {
"cwd": "${workspaceFolder}/fleet"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test fleet",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/fleet"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build",
"dependsOn": [
@@ -253,7 +277,8 @@
"build svg-maker",
"build waitfor",
"build cronr",
"build giteactl"
"build giteactl",
"build fleet"
],
"dependsOrder": "parallel",
"group": {