Files
agent-tools/.vscode/tasks.json
claude 4bae7bfb72
All checks were successful
release-tools / build-release (push) Successful in 2m27s
ci/tasks/readme: register fleet
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011KikHkfCiC3yELbsMN8fT9
2026-08-07 01:02:53 +02:00

292 lines
6.3 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build pixel-sprite-maker",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/spritec .",
"options": {
"cwd": "${workspaceFolder}/pixel-sprite-maker"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "build mesh-tool",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/mesht .",
"options": {
"cwd": "${workspaceFolder}/mesh-tool"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "build bitmap-font-maker",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/fontc .",
"options": {
"cwd": "${workspaceFolder}/bitmap-font-maker"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test bitmap-font-maker",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/bitmap-font-maker"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build sfx-maker",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/sfxc .",
"options": {
"cwd": "${workspaceFolder}/sfx-maker"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test sfx-maker",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/sfx-maker"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build hitbox-tool",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/hitbox .",
"options": {
"cwd": "${workspaceFolder}/hitbox-tool"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test hitbox-tool",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/hitbox-tool"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "test pixel-sprite-maker",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/pixel-sprite-maker"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "test mesh-tool",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/mesh-tool"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build notifyr",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/notifyr .",
"options": {
"cwd": "${workspaceFolder}/notifyr"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test notifyr",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/notifyr"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build svg-maker",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/svgc .",
"options": {
"cwd": "${workspaceFolder}/svg-maker"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test svg-maker",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/svg-maker"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build waitfor",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/waitfor .",
"options": {
"cwd": "${workspaceFolder}/waitfor"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test waitfor",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/waitfor"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build cronr",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/cronr .",
"options": {
"cwd": "${workspaceFolder}/cronr"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test cronr",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/cronr"
},
"group": "test",
"problemMatcher": [
"$go"
]
},
{
"label": "build giteactl",
"type": "shell",
"command": "go build -trimpath -ldflags '-s -w' -o build/giteactl .",
"options": {
"cwd": "${workspaceFolder}/giteactl"
},
"group": "build",
"problemMatcher": [
"$go"
]
},
{
"label": "test giteactl",
"type": "shell",
"command": "go test ./...",
"options": {
"cwd": "${workspaceFolder}/giteactl"
},
"group": "test",
"problemMatcher": [
"$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": [
"build pixel-sprite-maker",
"build mesh-tool",
"build bitmap-font-maker",
"build sfx-maker",
"build hitbox-tool",
"build notifyr",
"build svg-maker",
"build waitfor",
"build cronr",
"build giteactl",
"build fleet"
],
"dependsOrder": "parallel",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}