jgrusewski
845e77a8b0
fix(ci): Fix GitLab CI YAML syntax and PPOConfig compilation errors
Two critical fixes for successful pipeline execution:
1. GitLab CI YAML Syntax Fix (.gitlab-ci.yml:84-86)
- Wrapped echo commands containing colons in single quotes
- Root cause: YAML parser interprets `"text: value"` as key-value pairs
- Solution: Single quotes force literal string interpretation
- Impact: Enables Docker build pipeline execution
2. Trading Service Compilation Fix (trading_service/src/services/enhanced_ml.rs:1328-1348)
- Added missing early stopping fields to PPOConfig initialization
- Fields: early_stopping_enabled, early_stopping_patience, early_stopping_min_delta, early_stopping_min_epochs
- Values: Disabled by default for paper trading (early_stopping_enabled: false)
- Impact: Resolves pre-push hook compilation error
Technical Details:
- YAML Issue: Colons followed by spaces trigger mapping syntax parsing
- Single quotes preserve shell variable expansion while forcing literal YAML strings
- Early stopping config matches PPOConfig struct updates from Wave D
- Default values: patience=5, min_delta=0.001, min_epochs=10
Validated:
- ✅ YAML syntax validated with PyYAML
- ✅ trading_service compilation successful (cargo check)
- ✅ Ready for GitLab CI/CD pipeline execution
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-31 00:20:00 +01:00
..
2025-10-22 20:50:43 +02:00
2025-10-22 22:48:04 +02:00
2025-10-10 23:05:26 +02:00
2025-09-30 22:56:03 +02:00
2025-10-19 09:10:55 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-31 00:20:00 +01:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-09-24 23:47:21 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-03 07:34:26 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-22 22:48:04 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-09-24 23:47:21 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00
2025-10-24 01:11:43 +02:00