Compare commits

..

1 Commits

Author SHA1 Message Date
e694969381 docs: replace stale raw-IP forge link with canonical domain (#46)
All checks were successful
Smoke Test / smoke (pull_request) Successful in 19s
Replace http://143.198.27.163:3000 with
https://forge.alexanderwhitestone.com in docs/PROJECT_STATUS.md.

No other raw-IP references found in repo.

Closes #46.
2026-04-17 01:22:05 -04:00
3 changed files with 1 additions and 15 deletions

View File

@@ -18,11 +18,6 @@ jobs:
find . -name '*.py' | grep -v llama-cpp-fork | xargs -r python3 -m py_compile
find . -name '*.sh' | xargs -r bash -n
echo "PASS: All files parse"
- name: Standalone CMake build and test
run: |
cmake -S . -B build -DTURBOQUANT_BUILD_TESTS=ON
cmake --build build
ctest --test-dir build --output-on-failure
- name: Secret scan
run: |
if grep -rE 'sk-or-|sk-ant-|ghp_|AKIA' . --include='*.yml' --include='*.py' --include='*.sh' 2>/dev/null | grep -v .gitea | grep -v llama-cpp-fork; then exit 1; fi

View File

@@ -385,7 +385,7 @@ Step 7: If pass → production. If fail → drop to turbo3 or adjust per-layer p
---
*Repo: http://143.198.27.163:3000/Timmy_Foundation/turboquant*
*Repo: https://forge.alexanderwhitestone.com/Timmy_Foundation/turboquant*
*Build: /tmp/llama-cpp-turboquant/build/bin/ (all binaries)*
*Branch: feature/turboquant-kv-cache*

View File

@@ -1,9 +0,0 @@
from pathlib import Path
def test_smoke_workflow_builds_and_tests_standalone_cmake_target():
workflow = Path('.gitea/workflows/smoke.yml').read_text()
assert 'cmake -S . -B build -DTURBOQUANT_BUILD_TESTS=ON' in workflow
assert 'cmake --build build' in workflow
assert 'ctest --test-dir build --output-on-failure' in workflow