Skip to content

Commit 2f367be

Browse files
Phase 5 COMPLETE: CI/CD, Documentation, Benchmarks
- Added GitHub Actions workflow (CI) for build & test on macOS. - Updated README.md to 'Portfolio Grade' standard. - Added Performance Benchmark results (1.92M lines/sec on M1). - Documented Architecture, Design Decisions, and Trade-offs. - Cleaned up temp files. Project Status: 100% COMPLETE. - Core: Optimized C++17 - App: Async/Headless capable - GUI: Modern ImGui with Charts/Picker - Tests: Catch2 v3 - CI: Automated
1 parent 67c2707 commit 2f367be

File tree

3 files changed

+133
-295
lines changed

3 files changed

+133
-295
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: C++ CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: macos-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: install dependencies
17+
run: |
18+
brew install glfw
19+
brew install grep
20+
21+
- name: Build CLI
22+
run: make log_analyzer
23+
24+
- name: Build Tests
25+
run: make build-tests
26+
27+
- name: Run Tests
28+
run: make test
29+
30+
- name: Build GUI
31+
run: make build-gui

0 commit comments

Comments
 (0)