From b8b63d2f8ada86a84eb8dd0211a9d961c39da619 Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Mon, 6 Jul 2026 02:48:53 +0000 Subject: [PATCH 1/7] feat: add CGo build/vet checks for inference in healthcheck --- scripts/healthcheck.sh | 73 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 72 insertions(+), 1 deletion(-) diff --git a/scripts/healthcheck.sh b/scripts/healthcheck.sh index 4b1ad9b..6f8de42 100755 --- a/scripts/healthcheck.sh +++ b/scripts/healthcheck.sh @@ -89,6 +89,8 @@ clone_repo() { has_go() { command -v go >/dev/null 2>&1; } has_shellcheck() { command -v shellcheck >/dev/null 2>&1; } +has_cmake() { command -v cmake >/dev/null 2>&1; } +has_gcc() { command -v gcc >/dev/null 2>&1; } check_go_build() { local dir="$1" label="$2" @@ -116,6 +118,73 @@ check_go_vet() { fi } +check_go_build_cgo() { + local dir="$1" label="$2" + if ! has_go; then + check "cgo build $label" skip "go not installed" + return + fi + if ! has_cmake; then + check "cgo build $label" skip "cmake not installed" + return + fi + if ! has_gcc; then + check "cgo build $label" skip "gcc not installed" + return + fi + local llama_dir="$dir/vendor/llama.cpp" + if [ ! -f "$llama_dir/CMakeLists.txt" ]; then + mkdir -p "$dir/vendor" + git clone --depth=1 https://github.com/ggerganov/llama.cpp.git "$llama_dir" 2>/dev/null || { + check "cgo build $label" skip "llama.cpp clone failed" + return + } + fi + if [ ! -f "$llama_dir/build/libllama.a" ]; then + (cd "$llama_dir" && cmake -B build -DLLAMA_NO_ACCELERATE=1 -DLLAMA_STATIC=1 \ + -DLLAMA_NATIVE=0 -DBUILD_SHARED_LIBS=0 -DLLAMA_BUILD_TESTS=0 \ + -DLLAMA_BUILD_EXAMPLES=0 -DLLAMA_BUILD_SERVER=0 \ + -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY="$PWD/build" && \ + cmake --build build --target llama --config Release -j"$(nproc)") 2>/dev/null || { + check "cgo build $label" fail "llama.cpp cmake build failed" + return + } + fi + local ggml_inc="$llama_dir/ggml/include" + if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" go build -tags=cgo -o /dev/null ./cmd/cograw 2>&1; then + check "cgo build $label" pass + else + check "cgo build $label" fail "cgo build error" + fi +} + +check_go_vet_cgo() { + local dir="$1" label="$2" + if ! has_go; then + check "cgo vet $label" skip "go not installed" + return + fi + if ! has_cmake; then + check "cgo vet $label" skip "cmake not installed" + return + fi + if ! has_gcc; then + check "cgo vet $label" skip "gcc not installed" + return + fi + local llama_dir="$dir/vendor/llama.cpp" + if [ ! -f "$llama_dir/CMakeLists.txt" ] || [ ! -f "$llama_dir/build/libllama.a" ]; then + check "cgo vet $label" skip "llama.cpp not built (cgo build step handles this)" + return + fi + local ggml_inc="$llama_dir/ggml/include" + if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" go vet -tags=cgo ./... 2>&1; then + check "cgo vet $label" pass + else + check "cgo vet $label" fail "cgo vet errors" + fi +} + check_sh_syntax() { local dir="$1" label="$2" local errors=0 @@ -256,7 +325,7 @@ hr # ── Tool availability ── section "Tool Availability" -for tool in git go shellcheck; do +for tool in git go shellcheck cmake; do if command -v "$tool" >/dev/null 2>&1; then ver=$("$tool" version 2>&1 | head -1) check "$tool" pass "$ver" @@ -329,6 +398,8 @@ for repo in $ALL_REPOS; do *" $repo "*) check_build_tags "$dir" "$repo" check_stale_refs "$dir" "$repo" + check_go_build_cgo "$dir" "$repo" + check_go_vet_cgo "$dir" "$repo" ;; esac From cde4e56bc02f39655db7a97894e99947ef3a1219 Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Mon, 6 Jul 2026 02:54:46 +0000 Subject: [PATCH 2/7] fix: add ggml lib discovery and -lgomp to CGo build/vet checks --- scripts/healthcheck.sh | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/scripts/healthcheck.sh b/scripts/healthcheck.sh index 6f8de42..fc799a4 100755 --- a/scripts/healthcheck.sh +++ b/scripts/healthcheck.sh @@ -151,7 +151,13 @@ check_go_build_cgo() { } fi local ggml_inc="$llama_dir/ggml/include" - if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" go build -tags=cgo -o /dev/null ./cmd/cograw 2>&1; then + local ggml_ld="" + for lib in $(find "$llama_dir/build" -name "libggml*.a" -type f); do + libname=$(basename "$lib" .a | sed 's/^lib//') + ggml_ld="${ggml_ld} -l${libname}" + done + ggml_ld="${ggml_ld} -lgomp" + if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" CGO_LDFLAGS="$ggml_ld" go build -tags=cgo -o /dev/null ./cmd/cograw 2>&1; then check "cgo build $label" pass else check "cgo build $label" fail "cgo build error" @@ -178,7 +184,13 @@ check_go_vet_cgo() { return fi local ggml_inc="$llama_dir/ggml/include" - if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" go vet -tags=cgo ./... 2>&1; then + local ggml_ld="" + for lib in $(find "$llama_dir/build" -name "libggml*.a" -type f); do + libname=$(basename "$lib" .a | sed 's/^lib//') + ggml_ld="${ggml_ld} -l${libname}" + done + ggml_ld="${ggml_ld} -lgomp" + if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" CGO_LDFLAGS="$ggml_ld" go vet -tags=cgo ./... 2>&1; then check "cgo vet $label" pass else check "cgo vet $label" fail "cgo vet errors" From eca5a729e05ae9f875c0d3b7a7d87e59a628bf44 Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Mon, 6 Jul 2026 03:01:07 +0000 Subject: [PATCH 3/7] fix: correct cmake version flag and remove unused cmake variables --- reports/healthcheck-main-20260706-025502.txt | 1 + reports/healthcheck-main-20260706-025730.txt | 126 +++++++++++++++++++ scripts/healthcheck.sh | 11 +- 3 files changed, 134 insertions(+), 4 deletions(-) create mode 100644 reports/healthcheck-main-20260706-025502.txt create mode 100644 reports/healthcheck-main-20260706-025730.txt diff --git a/reports/healthcheck-main-20260706-025502.txt b/reports/healthcheck-main-20260706-025502.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/reports/healthcheck-main-20260706-025502.txt @@ -0,0 +1 @@ + diff --git a/reports/healthcheck-main-20260706-025730.txt b/reports/healthcheck-main-20260706-025730.txt new file mode 100644 index 0000000..fb982eb --- /dev/null +++ b/reports/healthcheck-main-20260706-025730.txt @@ -0,0 +1,126 @@ + +── CognitiveOS Health Check ── +Branch: main +Tag: v0.4.0 +Date: Mon Jul 6 02:57:30 UTC 2026 +Host: Linux 4011895967fd 6.12.76-linuxkit #1 SMP PREEMPT_DYNAMIC Fri May 29 10:02:54 UTC 2026 x86_64 Linux +---------------------------------------- + +── Tool Availability ── + [PASS] git — git version 2.54.0 + [PASS] go — go version go1.26.3 linux/amd64 + [PASS] shellcheck — version: version: openBinaryFile: does not exist (No such file or directory) + [PASS] cmake — CMake Error: The source directory "/workspace/sdlc/version" does not exist. +---------------------------------------- + +── Repository Checkout ── + [PASS] clone cognitiveos + [PASS] clone product-specs + [PASS] clone sdlc + [PASS] clone cpm + [PASS] clone core-mcp-bridges + [PASS] clone inference + [PASS] clone cognitiveosd + [PASS] clone cli + [PASS] clone cognitiveos-distro + [PASS] clone registry-server + [PASS] clone cgp-template +---------------------------------------- + +── cognitiveos ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] Dockerfile FROM (cognitiveos) + [PASS] Dockerfile SSH (cognitiveos) + +── product-specs ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [SKIP] Dockerfile (product-specs) — not found + +── sdlc ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] sh -n scripts/ sdlc + [PASS] shellcheck sdlc + [SKIP] Dockerfile (sdlc) — not found + +── cpm ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] go build cpm + [PASS] go vet cpm + [SKIP] Dockerfile (cpm) — not found + +── core-mcp-bridges ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] go build core-mcp-bridges + [PASS] go vet core-mcp-bridges + [SKIP] Dockerfile (core-mcp-bridges) — not found + +── inference ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] go build inference + [PASS] go vet inference + [PASS] build tags (inference) + [PASS] stale refs (inference) + [FAIL] cgo build inference — cgo build error + [FAIL] cgo vet inference — cgo vet errors + [SKIP] Dockerfile (inference) — not found + +── cognitiveosd ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] go build cognitiveosd + [PASS] go vet cognitiveosd + [SKIP] Dockerfile (cognitiveosd) — not found + +── cli ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] go build cli + [PASS] go vet cli + [SKIP] Dockerfile (cli) — not found + +── cognitiveos-distro ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] sh -n scripts/ cognitiveos-distro + [PASS] shellcheck cognitiveos-distro + [PASS] Dockerfile FROM (cognitiveos-distro) + [PASS] Dockerfile SSH (cognitiveos-distro) + [PASS] CGO_ENABLED=1 (cognitiveos-distro) + [PASS] cograw target (cognitiveos-distro) + +── registry-server ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [PASS] go build registry-server + [PASS] go vet registry-server + [SKIP] Dockerfile (registry-server) — not found + +── cgp-template ── + [PASS] git status clean + [PASS] on branch main + [PASS] tag v0.4.0 + [SKIP] Dockerfile (cgp-template) — not found +---------------------------------------- + +Summary + Pass: 72 + Fail: 2 + Skip: 9 + Total: 83 + diff --git a/scripts/healthcheck.sh b/scripts/healthcheck.sh index fc799a4..5fdc776 100755 --- a/scripts/healthcheck.sh +++ b/scripts/healthcheck.sh @@ -141,9 +141,9 @@ check_go_build_cgo() { } fi if [ ! -f "$llama_dir/build/libllama.a" ]; then - (cd "$llama_dir" && cmake -B build -DLLAMA_NO_ACCELERATE=1 -DLLAMA_STATIC=1 \ - -DLLAMA_NATIVE=0 -DBUILD_SHARED_LIBS=0 -DLLAMA_BUILD_TESTS=0 \ - -DLLAMA_BUILD_EXAMPLES=0 -DLLAMA_BUILD_SERVER=0 \ + (cd "$llama_dir" && cmake -B build -DLLAMA_NATIVE=0 -DBUILD_SHARED_LIBS=0 \ + -DLLAMA_BUILD_TESTS=0 -DLLAMA_BUILD_EXAMPLES=0 \ + -DLLAMA_BUILD_SERVER=0 \ -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY="$PWD/build" && \ cmake --build build --target llama --config Release -j"$(nproc)") 2>/dev/null || { check "cgo build $label" fail "llama.cpp cmake build failed" @@ -339,7 +339,10 @@ hr section "Tool Availability" for tool in git go shellcheck cmake; do if command -v "$tool" >/dev/null 2>&1; then - ver=$("$tool" version 2>&1 | head -1) + case "$tool" in + cmake) ver=$(cmake --version 2>&1 | head -1) ;; + *) ver=$("$tool" version 2>&1 | head -1) ;; + esac check "$tool" pass "$ver" else check "$tool" skip "not installed" From 974ebd13bb475a942312592ad6846f31ca0d4137 Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Mon, 6 Jul 2026 03:01:16 +0000 Subject: [PATCH 4/7] chore: remove stale report files from branch --- reports/healthcheck-main-20260706-025502.txt | 1 - reports/healthcheck-main-20260706-025730.txt | 126 ------------------- 2 files changed, 127 deletions(-) delete mode 100644 reports/healthcheck-main-20260706-025502.txt delete mode 100644 reports/healthcheck-main-20260706-025730.txt diff --git a/reports/healthcheck-main-20260706-025502.txt b/reports/healthcheck-main-20260706-025502.txt deleted file mode 100644 index 8b13789..0000000 --- a/reports/healthcheck-main-20260706-025502.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/reports/healthcheck-main-20260706-025730.txt b/reports/healthcheck-main-20260706-025730.txt deleted file mode 100644 index fb982eb..0000000 --- a/reports/healthcheck-main-20260706-025730.txt +++ /dev/null @@ -1,126 +0,0 @@ - -── CognitiveOS Health Check ── -Branch: main -Tag: v0.4.0 -Date: Mon Jul 6 02:57:30 UTC 2026 -Host: Linux 4011895967fd 6.12.76-linuxkit #1 SMP PREEMPT_DYNAMIC Fri May 29 10:02:54 UTC 2026 x86_64 Linux ----------------------------------------- - -── Tool Availability ── - [PASS] git — git version 2.54.0 - [PASS] go — go version go1.26.3 linux/amd64 - [PASS] shellcheck — version: version: openBinaryFile: does not exist (No such file or directory) - [PASS] cmake — CMake Error: The source directory "/workspace/sdlc/version" does not exist. ----------------------------------------- - -── Repository Checkout ── - [PASS] clone cognitiveos - [PASS] clone product-specs - [PASS] clone sdlc - [PASS] clone cpm - [PASS] clone core-mcp-bridges - [PASS] clone inference - [PASS] clone cognitiveosd - [PASS] clone cli - [PASS] clone cognitiveos-distro - [PASS] clone registry-server - [PASS] clone cgp-template ----------------------------------------- - -── cognitiveos ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] Dockerfile FROM (cognitiveos) - [PASS] Dockerfile SSH (cognitiveos) - -── product-specs ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [SKIP] Dockerfile (product-specs) — not found - -── sdlc ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] sh -n scripts/ sdlc - [PASS] shellcheck sdlc - [SKIP] Dockerfile (sdlc) — not found - -── cpm ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] go build cpm - [PASS] go vet cpm - [SKIP] Dockerfile (cpm) — not found - -── core-mcp-bridges ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] go build core-mcp-bridges - [PASS] go vet core-mcp-bridges - [SKIP] Dockerfile (core-mcp-bridges) — not found - -── inference ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] go build inference - [PASS] go vet inference - [PASS] build tags (inference) - [PASS] stale refs (inference) - [FAIL] cgo build inference — cgo build error - [FAIL] cgo vet inference — cgo vet errors - [SKIP] Dockerfile (inference) — not found - -── cognitiveosd ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] go build cognitiveosd - [PASS] go vet cognitiveosd - [SKIP] Dockerfile (cognitiveosd) — not found - -── cli ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] go build cli - [PASS] go vet cli - [SKIP] Dockerfile (cli) — not found - -── cognitiveos-distro ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] sh -n scripts/ cognitiveos-distro - [PASS] shellcheck cognitiveos-distro - [PASS] Dockerfile FROM (cognitiveos-distro) - [PASS] Dockerfile SSH (cognitiveos-distro) - [PASS] CGO_ENABLED=1 (cognitiveos-distro) - [PASS] cograw target (cognitiveos-distro) - -── registry-server ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [PASS] go build registry-server - [PASS] go vet registry-server - [SKIP] Dockerfile (registry-server) — not found - -── cgp-template ── - [PASS] git status clean - [PASS] on branch main - [PASS] tag v0.4.0 - [SKIP] Dockerfile (cgp-template) — not found ----------------------------------------- - -Summary - Pass: 72 - Fail: 2 - Skip: 9 - Total: 83 - From e49d76aea31aa66eb3b194fdfec0432db7226f50 Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Mon, 6 Jul 2026 03:08:48 +0000 Subject: [PATCH 5/7] fix: suppress cmake build output in JSON mode --- reports/healthcheck-main-20260706-030129.txt | 1 + reports/healthcheck-main-20260706-030339.txt | 1 + reports/healthcheck-main-20260706-030434.txt | 1 + reports/healthcheck-main-20260706-030531.txt | 1 + reports/healthcheck-main-20260706-030626.txt | 1 + reports/healthcheck-main-20260706-030721.txt | 1 + scripts/healthcheck.sh | 14 +++++++------- 7 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 reports/healthcheck-main-20260706-030129.txt create mode 100644 reports/healthcheck-main-20260706-030339.txt create mode 100644 reports/healthcheck-main-20260706-030434.txt create mode 100644 reports/healthcheck-main-20260706-030531.txt create mode 100644 reports/healthcheck-main-20260706-030626.txt create mode 100644 reports/healthcheck-main-20260706-030721.txt diff --git a/reports/healthcheck-main-20260706-030129.txt b/reports/healthcheck-main-20260706-030129.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/reports/healthcheck-main-20260706-030129.txt @@ -0,0 +1 @@ + diff --git a/reports/healthcheck-main-20260706-030339.txt b/reports/healthcheck-main-20260706-030339.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/reports/healthcheck-main-20260706-030339.txt @@ -0,0 +1 @@ + diff --git a/reports/healthcheck-main-20260706-030434.txt b/reports/healthcheck-main-20260706-030434.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/reports/healthcheck-main-20260706-030434.txt @@ -0,0 +1 @@ + diff --git a/reports/healthcheck-main-20260706-030531.txt b/reports/healthcheck-main-20260706-030531.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/reports/healthcheck-main-20260706-030531.txt @@ -0,0 +1 @@ + diff --git a/reports/healthcheck-main-20260706-030626.txt b/reports/healthcheck-main-20260706-030626.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/reports/healthcheck-main-20260706-030626.txt @@ -0,0 +1 @@ + diff --git a/reports/healthcheck-main-20260706-030721.txt b/reports/healthcheck-main-20260706-030721.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/reports/healthcheck-main-20260706-030721.txt @@ -0,0 +1 @@ + diff --git a/scripts/healthcheck.sh b/scripts/healthcheck.sh index 5fdc776..5198d6f 100755 --- a/scripts/healthcheck.sh +++ b/scripts/healthcheck.sh @@ -135,17 +135,17 @@ check_go_build_cgo() { local llama_dir="$dir/vendor/llama.cpp" if [ ! -f "$llama_dir/CMakeLists.txt" ]; then mkdir -p "$dir/vendor" - git clone --depth=1 https://github.com/ggerganov/llama.cpp.git "$llama_dir" 2>/dev/null || { + git clone --depth=1 https://github.com/ggerganov/llama.cpp.git "$llama_dir" >/dev/null 2>&1 || { check "cgo build $label" skip "llama.cpp clone failed" return } fi if [ ! -f "$llama_dir/build/libllama.a" ]; then - (cd "$llama_dir" && cmake -B build -DLLAMA_NATIVE=0 -DBUILD_SHARED_LIBS=0 \ - -DLLAMA_BUILD_TESTS=0 -DLLAMA_BUILD_EXAMPLES=0 \ - -DLLAMA_BUILD_SERVER=0 \ + (cd "$llama_dir" && cmake -B build -DLLAMA_NATIVE=0 \ + -DBUILD_SHARED_LIBS=0 -DLLAMA_BUILD_TESTS=0 \ + -DLLAMA_BUILD_EXAMPLES=0 -DLLAMA_BUILD_SERVER=0 \ -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY="$PWD/build" && \ - cmake --build build --target llama --config Release -j"$(nproc)") 2>/dev/null || { + cmake --build build --target llama --config Release -j"$(nproc)") >/dev/null 2>&1 || { check "cgo build $label" fail "llama.cpp cmake build failed" return } @@ -157,7 +157,7 @@ check_go_build_cgo() { ggml_ld="${ggml_ld} -l${libname}" done ggml_ld="${ggml_ld} -lgomp" - if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" CGO_LDFLAGS="$ggml_ld" go build -tags=cgo -o /dev/null ./cmd/cograw 2>&1; then + if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" CGO_LDFLAGS="$ggml_ld" go build -tags=cgo -o /dev/null ./cmd/cograw >/dev/null 2>&1; then check "cgo build $label" pass else check "cgo build $label" fail "cgo build error" @@ -190,7 +190,7 @@ check_go_vet_cgo() { ggml_ld="${ggml_ld} -l${libname}" done ggml_ld="${ggml_ld} -lgomp" - if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" CGO_LDFLAGS="$ggml_ld" go vet -tags=cgo ./... 2>&1; then + if CGO_ENABLED=1 CGO_CFLAGS="-I$ggml_inc" CGO_LDFLAGS="$ggml_ld" go vet -tags=cgo ./... >/dev/null 2>&1; then check "cgo vet $label" pass else check "cgo vet $label" fail "cgo vet errors" From 08708a4a54c4ce8abc2acb66d67928e7c5ba0f6a Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Mon, 6 Jul 2026 03:08:54 +0000 Subject: [PATCH 6/7] chore: remove stale report files --- reports/healthcheck-main-20260706-030129.txt | 1 - reports/healthcheck-main-20260706-030339.txt | 1 - reports/healthcheck-main-20260706-030434.txt | 1 - reports/healthcheck-main-20260706-030531.txt | 1 - reports/healthcheck-main-20260706-030626.txt | 1 - reports/healthcheck-main-20260706-030721.txt | 1 - 6 files changed, 6 deletions(-) delete mode 100644 reports/healthcheck-main-20260706-030129.txt delete mode 100644 reports/healthcheck-main-20260706-030339.txt delete mode 100644 reports/healthcheck-main-20260706-030434.txt delete mode 100644 reports/healthcheck-main-20260706-030531.txt delete mode 100644 reports/healthcheck-main-20260706-030626.txt delete mode 100644 reports/healthcheck-main-20260706-030721.txt diff --git a/reports/healthcheck-main-20260706-030129.txt b/reports/healthcheck-main-20260706-030129.txt deleted file mode 100644 index 8b13789..0000000 --- a/reports/healthcheck-main-20260706-030129.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/reports/healthcheck-main-20260706-030339.txt b/reports/healthcheck-main-20260706-030339.txt deleted file mode 100644 index 8b13789..0000000 --- a/reports/healthcheck-main-20260706-030339.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/reports/healthcheck-main-20260706-030434.txt b/reports/healthcheck-main-20260706-030434.txt deleted file mode 100644 index 8b13789..0000000 --- a/reports/healthcheck-main-20260706-030434.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/reports/healthcheck-main-20260706-030531.txt b/reports/healthcheck-main-20260706-030531.txt deleted file mode 100644 index 8b13789..0000000 --- a/reports/healthcheck-main-20260706-030531.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/reports/healthcheck-main-20260706-030626.txt b/reports/healthcheck-main-20260706-030626.txt deleted file mode 100644 index 8b13789..0000000 --- a/reports/healthcheck-main-20260706-030626.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/reports/healthcheck-main-20260706-030721.txt b/reports/healthcheck-main-20260706-030721.txt deleted file mode 100644 index 8b13789..0000000 --- a/reports/healthcheck-main-20260706-030721.txt +++ /dev/null @@ -1 +0,0 @@ - From 5468971a9bd5ac6420fe9da5e7274b85442af7b1 Mon Sep 17 00:00:00 2001 From: Jean Machuca Date: Mon, 6 Jul 2026 03:09:01 +0000 Subject: [PATCH 7/7] chore: ignore reports/ directory --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 908b95e..b0b1379 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ Thumbs.db # Editor backups * 2.* +reports/