chore: auto-commit (129 archivos)
- .claude/agents/fn-analizador/SKILL.md - .claude/agents/fn-constructor/SKILL.md - .claude/agents/fn-executor/SKILL.md - .claude/agents/fn-mejorador/SKILL.md - .claude/agents/fn-orquestador/SKILL.md - .claude/agents/fn-recopilador/SKILL.md - .claude/commands/app.md - .claude/commands/compile.md - .claude/commands/cpp-app.md - .claude/commands/create_functions.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -48,7 +48,7 @@ e2e_checks:
|
||||
# rompe su API de compilacion, este check lo detecta antes de que otro app falle.
|
||||
# Actua como build gate del registry de funciones C++.
|
||||
- id: build
|
||||
cmd: "cmake --build /home/lucas/fn_registry/cpp/build/windows --target primitives_gallery -j"
|
||||
cmd: "cmake --build $HOME/fn_registry/cpp/build/windows --target primitives_gallery -j"
|
||||
timeout_s: 300
|
||||
severity: critical
|
||||
|
||||
@@ -56,7 +56,7 @@ e2e_checks:
|
||||
# El build puede reportar exit 0 con -j en builds parciales sin producir binario.
|
||||
# Sin este check, capture_mode fallaria con un mensaje de error menos claro.
|
||||
- id: binary_exists
|
||||
cmd: "test -f /home/lucas/fn_registry/cpp/build/windows/apps/primitives_gallery/primitives_gallery.exe"
|
||||
cmd: "test -f $HOME/fn_registry/cpp/build/windows/apps/primitives_gallery/primitives_gallery.exe"
|
||||
timeout_s: 5
|
||||
severity: critical
|
||||
|
||||
@@ -78,7 +78,7 @@ e2e_checks:
|
||||
- id: capture_mode
|
||||
cmd: >
|
||||
mkdir -p /tmp/primitives_gallery_e2e &&
|
||||
/home/lucas/fn_registry/cpp/build/windows/apps/primitives_gallery/primitives_gallery.exe
|
||||
$HOME/fn_registry/cpp/build/windows/apps/primitives_gallery/primitives_gallery.exe
|
||||
--capture /tmp/primitives_gallery_e2e
|
||||
timeout_s: 120
|
||||
severity: warning
|
||||
@@ -108,7 +108,7 @@ e2e_checks:
|
||||
# como recurso (.rsrc) en el .exe. Si appicon.ico falta, el build pasa
|
||||
# pero el .exe queda sin icono embebido (visible en Explorer + taskbar).
|
||||
- id: icon_exists
|
||||
cmd: "test -f /home/lucas/fn_registry/apps/primitives_gallery/appicon.ico"
|
||||
cmd: "test -f $HOME/fn_registry/apps/primitives_gallery/appicon.ico"
|
||||
timeout_s: 5
|
||||
severity: warning
|
||||
|
||||
@@ -121,7 +121,7 @@ e2e_checks:
|
||||
# Referencia esperada: 43 entradas (conteo manual de k_demos[] en main.cpp L37-84).
|
||||
- id: demos_count_static
|
||||
cmd: >
|
||||
count=$(grep -c '^\s*{"' /home/lucas/fn_registry/apps/primitives_gallery/main.cpp);
|
||||
count=$(grep -c '^\s*{"' $HOME/fn_registry/apps/primitives_gallery/main.cpp);
|
||||
echo "DemoEntry count in source: $count";
|
||||
test "$count" -ge 43
|
||||
timeout_s: 5
|
||||
|
||||
Reference in New Issue
Block a user