-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
56 lines (56 loc) · 1.5 KB
/
config.json
File metadata and controls
56 lines (56 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"VERSION": "1.4.1",
"PROJECT": "FreshLogger",
"DESCRIPTION": "Enterprise-grade C++ logging library with comprehensive CI/CD pipeline and documentation",
"AUTHOR": "Ömer Bulut",
"LICENSE": "MIT",
"REPOSITORY": "https://github.com/omerrbbulut/FreshLogger",
"CI_CD": {
"PHASE_1": {
"CODE_QUALITY": true,
"SECURITY_SCAN": true,
"CROSS_COMPILER": true
},
"PHASE_2": {
"PARALLEL_TESTING": true,
"BUILD_CACHING": true,
"PERFORMANCE_REGRESSION": true
},
"PHASE_3": {
"CROSS_PLATFORM": false,
"INTEGRATION_TESTS": false,
"LOAD_TESTING": false
}
},
"BUILD": {
"COMPILERS": ["gcc-11", "clang-14"],
"CXX_STANDARD": "17",
"OPTIMIZATION": "O2",
"WARNINGS": "all"
},
"TESTING": {
"UNIT_TESTS": true,
"PERFORMANCE_TESTS": true,
"STRESS_TESTS": true,
"EDGE_CASE_TESTS": true,
"MACRO_TESTS": true,
"PARALLEL_EXECUTION": true,
"TIMEOUT_SECONDS": 120
},
"CACHE": {
"ENABLED": true,
"MAX_SIZE_MB": 500,
"CLEANUP_THRESHOLD": 80
},
"PERFORMANCE": {
"REGRESSION_THRESHOLD": 10,
"BASELINE_HISTORY": 10,
"METRICS": [
"throughput_msg_per_sec",
"latency_microseconds",
"memory_usage_kb",
"file_rotation_time_ms",
"concurrent_threads"
]
}
}