-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
197 lines (136 loc) · 5.03 KB
/
Makefile
File metadata and controls
197 lines (136 loc) · 5.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
.PHONY: demo core-demo core-baseline test-core core-ci \
enterprise-demo test-enterprise enterprise-ci \
edition-guard secret-scan domain-scrub security-gate openapi-check version-sync-check \
test-money release-artifacts pulse-insights \
icr-health pcr-health tec-ctec health-summary health-v2 \
icr-health-gh pcr-health-gh health-v2-gh tec \
roadmap-refresh roadmap-gate \
milestone-gate issue-label-gate kpi-issues kpi stability \
validate-feeds test-feeds-bus test-feeds-ingest test-feeds-consumers test-feeds-canon test-feeds \
constitution-gate \
verify-release-artifacts validate-kpi-eligibility tec-sensitivity \
benchmark scalability-gate benchmark-trend \
tec-estimate export-telemetry authority-evidence economic-metrics \
test-intelops test-franops test-reops test-cascade test-domains \
test-replay validate-coverage
demo:
bash run_money_demo.sh
core-demo:
bash run_money_demo.sh
enterprise-demo:
bash run_enterprise_demo.sh
core-baseline:
python core_baseline.py
test-money:
python -m pytest tests/test_money_demo.py -q
test-enterprise:
python -m pytest tests-enterprise/ -q
test-core:
python -m pytest tests/ -q
core-ci: edition-guard core-demo core-baseline test-core
enterprise-ci: edition-guard enterprise-demo test-enterprise
edition-guard:
@echo "==> Guard: CORE must not import ENTERPRISE"
@python enterprise/scripts/edition_guard.py
secret-scan:
@echo "==> Secret scan (lightweight patterns)"
@python enterprise/scripts/secret_scan.py
domain-scrub:
@echo "==> GPE: Generic Primitive Enforcement scan"
@python scripts/domain_scrub.py
security-gate: secret-scan
@python enterprise/scripts/security_proof_pack.py
openapi-check:
@test -f enterprise/docs/api/openapi.json
@echo "PASS: enterprise/docs/api/openapi.json present"
version-sync-check:
@python enterprise/scripts/version_sync_check.py
release-artifacts:
python enterprise/scripts/build_release_artifacts.py
pulse-insights:
python enterprise/scripts/pulse_insights.py
icr-health:
python enterprise/scripts/icr_health_watcher.py --snapshot
pcr-health:
python enterprise/scripts/pr_complexity_watcher.py --snapshot
tec-ctec:
python enterprise/scripts/tec_ctec.py --snapshot
tec-estimate:
python enterprise/scripts/tec_estimate.py
export-telemetry:
cd enterprise && bash scripts/export_repo_telemetry.sh
authority-evidence:
python enterprise/scripts/export_authority_evidence.py
economic-metrics:
python enterprise/scripts/economic_metrics.py
tec: tec-ctec tec-estimate
health-summary:
python enterprise/scripts/health_summary.py
health-v2: icr-health pcr-health tec-ctec health-summary
icr-health-gh:
python enterprise/scripts/icr_health_watcher.py --from-gh --snapshot
pcr-health-gh:
python enterprise/scripts/pr_complexity_watcher.py --from-gh --snapshot
health-v2-gh: icr-health-gh pcr-health-gh tec-ctec health-summary
roadmap-refresh:
python enterprise/scripts/roadmap_forecast.py
python enterprise/scripts/render_roadmap_badge.py
python enterprise/scripts/render_roadmap_timeline.py
roadmap-gate:
python enterprise/scripts/roadmap_scope_gate.py
milestone-gate:
python enterprise/scripts/validate_v2_1_0_milestone.py
issue-label-gate:
python enterprise/scripts/issue_label_gate.py
kpi-issues:
python enterprise/scripts/kpi_from_issues.py
stability:
python enterprise/scripts/nonlinear_stability.py
kpi:
python enterprise/scripts/kpi_run.py
validate-feeds:
python -m pytest tests/test_feeds_schemas.py tests/test_feeds_envelope.py tests/test_feeds_cli.py -v
test-feeds-bus:
python -m pytest tests/test_feeds_bus.py -v
test-feeds-ingest:
python -m pytest tests/test_feeds_ingest.py -v
test-feeds-consumers:
python -m pytest tests/test_feeds_consumers.py -v
test-feeds-canon:
python -m pytest tests/test_feeds_canon.py -v
test-feeds-contracts:
python -m pytest tests/test_feeds_contracts.py -v
validate-contracts:
python -m pytest tests/test_feeds_contracts.py::TestRoutingTableIntegrity -v
test-feeds: validate-feeds test-feeds-bus test-feeds-ingest test-feeds-consumers test-feeds-canon test-feeds-contracts
site-content:
python scripts/generate_site_content.py
constitution-gate:
python scripts/constitution_gate.py
verify-release-artifacts:
python scripts/verify_release_artifacts.py
validate-kpi-eligibility:
python scripts/validate_kpi_eligibility.py
tec-sensitivity:
python enterprise/scripts/tec_sensitivity.py
benchmark:
python enterprise/scripts/reencrypt_benchmark.py --ci-mode
scalability-gate:
python scripts/scalability_regression_gate.py
benchmark-trend:
python enterprise/scripts/render_benchmark_trend.py
test-intelops:
python -m pytest tests/test_intelops.py -v
test-franops:
python -m pytest tests/test_franops.py -v
test-reops:
python -m pytest tests/test_reops.py -v
test-cascade:
python -m pytest tests/test_cascade.py -v
test-domains: test-intelops test-franops test-reops test-cascade
test-replay:
python -m pytest tests/test_coverage_gate.py::TestDeterminism -v
validate-coverage:
python -m pytest tests/test_coverage_gate.py::TestCoverageGate -v
test-money-v2:
python -m pytest tests/test_money_demo_v2.py -v