Jeremie Fraeys
d3a861063f
fix(smoke-test): add Colima-specific file sharing instructions
...
Detect if user is running Colima and provide appropriate fix instructions:
- Check for colima command presence
- If Colima detected: suggest virtiofs/sshfs mount options
- Show colima.yaml mount configuration example
- Include verification command: colima ssh -- ls ...
Maintains Docker Desktop instructions for non-Colima users.
2026-02-24 11:35:58 -05:00
Jeremie Fraeys
00f938861c
fix(smoke-test): add Docker file sharing permission check for macOS
...
Add pre-flight check to detect Docker Desktop file sharing issues:
- After creating data directories, verify Docker can access them
- If access fails, print helpful error message with fix instructions
- Directs users to Docker Desktop Settings -> Resources -> File sharing
Prevents confusing 'operation not permitted' errors during smoke tests.
2026-02-24 11:35:23 -05:00
Jeremie Fraeys
305e1b3f2e
ci: update test and benchmark scripts
...
**scripts/benchmarks/run-benchmarks-local.sh:**
- Add support for native library benchmarks
**scripts/ci/test.sh:**
- Update CI test commands for new test structure
**scripts/dev/smoke-test.sh:**
- Improve smoke test reliability and output
2026-02-23 18:04:01 -05:00
Jeremie Fraeys
fa97521488
chore(scripts): Update CI, dev, release, and testing scripts
2026-02-23 14:13:55 -05:00
Jeremie Fraeys
94020e4ca4
chore: move detect_native.go and setup_monitoring.py to dev/
2026-02-18 17:57:57 -05:00
Jeremie Fraeys
8b75f71a6a
refactor: reorganize scripts into categorized structure
...
Consolidate 26+ scattered scripts into maintainable hierarchy:
New Structure:
- ci/ CI/CD validation (checks.sh, test.sh, verify-paths.sh)
- dev/ Development workflow (smoke-test.sh, manage-artifacts.sh)
- release/ Release preparation (cleanup.sh, prepare.sh, sanitize.sh, verify.sh, verify-checksums.sh)
- testing/ Test infrastructure (unchanged)
- benchmarks/ Performance tools (track-performance.sh)
- maintenance/ System cleanup (unchanged)
- lib/ Shared functions (unchanged)
Key Changes:
- Unified 6 cleanup-*.sh scripts into release/cleanup.sh with targets
- Merged smoke-test-native.sh into dev/smoke-test.sh --native flag
- Renamed scripts to follow lowercase-hyphen convention
- Moved root-level scripts to appropriate categories
- Updated all Makefile references
- Updated scripts/README.md with new structure
Script count: 26 → 17 (35% reduction)
Breaking Changes:
- Old paths no longer exist, update any direct script calls
- Use make targets (e.g., make ci-checks) for stability
2026-02-18 17:56:59 -05:00