refactor: rename tli→fxt, delete legacy scripts/RunPod/deploy artifacts
- Rename tli/ directory to fxt/, update package + binary name to "fxt" - Replace all `use tli::` → `use fxt::` across 52 Rust files - Update build.rs proto paths (tli/proto → fxt/proto) in 6 services - Update Dockerfiles, CI workflows, deploy.sh for new paths - Delete ~170 legacy shell scripts (kept 15 essential ones) - Delete RunPod Python client (runpod/), tests (tests/runpod/) - Delete foxhunt-deploy crate (RunPod-only deployment tool) - Delete terraform/runpod/ (moved to Scaleway) - Delete ML Python hyperopt scripts (replaced by Rust Argmin PSO) - Delete .gitlab-ci.yml (using GitHub + Gitea) - Remove foxhunt-deploy from workspace members 504 files changed, -74,355 lines of legacy code removed. Workspace compiles clean (0 errors, 0 warnings). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
28
.github/workflows/comprehensive-testing.yml
vendored
28
.github/workflows/comprehensive-testing.yml
vendored
@@ -145,7 +145,7 @@ jobs:
|
||||
EOF
|
||||
|
||||
- name: Build test harness
|
||||
run: cargo build --bin tli --bin ml-training-service --bin trading-service
|
||||
run: cargo build --bin fxt --bin ml-training-service --bin trading-service
|
||||
|
||||
- name: Run Layer 1 Foundation Tests
|
||||
run: |
|
||||
@@ -241,7 +241,7 @@ jobs:
|
||||
- name: Start services for integration testing
|
||||
run: |
|
||||
# Start services in background
|
||||
cargo run --bin tli -- --config tests/config/tli-test.toml &
|
||||
cargo run --bin fxt -- --config tests/config/fxt-test.toml &
|
||||
sleep 5
|
||||
cargo run --bin ml-training-service -- --config tests/config/ml-test.toml &
|
||||
sleep 5
|
||||
@@ -368,8 +368,8 @@ jobs:
|
||||
- name: Start complete service stack
|
||||
run: |
|
||||
# Start all services with proper config
|
||||
cargo run --bin tli -- --config tests/config/tli-workflow.toml &
|
||||
TLI_PID=$!
|
||||
cargo run --bin fxt -- --config tests/config/fxt-workflow.toml &
|
||||
FXT_PID=$!
|
||||
sleep 5
|
||||
|
||||
cargo run --bin ml-training-service -- --config tests/config/ml-workflow.toml &
|
||||
@@ -381,7 +381,7 @@ jobs:
|
||||
sleep 10
|
||||
|
||||
# Store PIDs for cleanup
|
||||
echo $TLI_PID > tli.pid
|
||||
echo $FXT_PID > fxt.pid
|
||||
echo $ML_PID > ml.pid
|
||||
echo $TRADING_PID > trading.pid
|
||||
|
||||
@@ -393,7 +393,7 @@ jobs:
|
||||
- name: Cleanup services
|
||||
if: always()
|
||||
run: |
|
||||
if [ -f tli.pid ]; then kill $(cat tli.pid) || true; fi
|
||||
if [ -f fxt.pid ]; then kill $(cat fxt.pid) || true; fi
|
||||
if [ -f ml.pid ]; then kill $(cat ml.pid) || true; fi
|
||||
if [ -f trading.pid ]; then kill $(cat trading.pid) || true; fi
|
||||
|
||||
@@ -521,8 +521,8 @@ jobs:
|
||||
- name: Start optimized service stack for performance testing
|
||||
run: |
|
||||
# Start services with performance-optimized configs
|
||||
RUST_LOG=warn cargo run --release --bin tli -- --config tests/config/tli-performance.toml &
|
||||
TLI_PID=$!
|
||||
RUST_LOG=warn cargo run --release --bin fxt -- --config tests/config/fxt-performance.toml &
|
||||
FXT_PID=$!
|
||||
sleep 5
|
||||
|
||||
RUST_LOG=warn cargo run --release --bin ml-training-service -- --config tests/config/ml-performance.toml &
|
||||
@@ -533,7 +533,7 @@ jobs:
|
||||
TRADING_PID=$!
|
||||
sleep 10
|
||||
|
||||
echo $TLI_PID > tli.pid
|
||||
echo $FXT_PID > fxt.pid
|
||||
echo $ML_PID > ml.pid
|
||||
echo $TRADING_PID > trading.pid
|
||||
|
||||
@@ -567,7 +567,7 @@ jobs:
|
||||
- name: Cleanup performance test services
|
||||
if: always()
|
||||
run: |
|
||||
if [ -f tli.pid ]; then kill $(cat tli.pid) || true; fi
|
||||
if [ -f fxt.pid ]; then kill $(cat fxt.pid) || true; fi
|
||||
if [ -f ml.pid ]; then kill $(cat ml.pid) || true; fi
|
||||
if [ -f trading.pid ]; then kill $(cat trading.pid) || true; fi
|
||||
|
||||
@@ -688,8 +688,8 @@ jobs:
|
||||
- name: Start resilient service stack for chaos testing
|
||||
run: |
|
||||
# Start services with resilience-focused configs
|
||||
cargo run --release --bin tli -- --config tests/config/tli-chaos.toml &
|
||||
TLI_PID=$!
|
||||
cargo run --release --bin fxt -- --config tests/config/fxt-chaos.toml &
|
||||
FXT_PID=$!
|
||||
sleep 5
|
||||
|
||||
cargo run --release --bin ml-training-service -- --config tests/config/ml-chaos.toml &
|
||||
@@ -700,7 +700,7 @@ jobs:
|
||||
TRADING_PID=$!
|
||||
sleep 10
|
||||
|
||||
echo $TLI_PID > tli.pid
|
||||
echo $FXT_PID > fxt.pid
|
||||
echo $ML_PID > ml.pid
|
||||
echo $TRADING_PID > trading.pid
|
||||
|
||||
@@ -732,7 +732,7 @@ jobs:
|
||||
- name: Cleanup chaos test services
|
||||
if: always()
|
||||
run: |
|
||||
if [ -f tli.pid ]; then kill $(cat tli.pid) || true; fi
|
||||
if [ -f fxt.pid ]; then kill $(cat fxt.pid) || true; fi
|
||||
if [ -f ml.pid ]; then kill $(cat ml.pid) || true; fi
|
||||
if [ -f trading.pid ]; then kill $(cat trading.pid) || true; fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user