-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
369 lines (342 loc) · 14.9 KB
/
Makefile
File metadata and controls
369 lines (342 loc) · 14.9 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
# Makefile for the Verovioxide Project
# ANSI color codes
BLUE := \033[1;34m
GREEN := \033[1;32m
YELLOW := \033[1;33m
RED := \033[1;31m
CYAN := \033[1;36m
RESET := \033[0m
# Variables
PROJECT_NAME := Verovioxide
CODE_NAME := verovioxide
BIN_DIR := ./bin
MODE := debug
TARGET := ./target/$(MODE)
GIT_COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo "unknown")
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "unknown")
BUILD_TIME := $(shell date -u '+%Y-%m-%dT%H:%M:%SZ')
RUST_VERSION := $(shell rustc --version 2>/dev/null || echo "unknown")
VEROVIO_VERSION := 5.7.0
# List of binaries to build and install
BINARIES := tbd
# Git remotes to push to
GIT_REMOTES := macpro github codeberg
# Default target
.DEFAULT_GOAL := help
# Help target
.PHONY: help
help:
@echo ""
@echo "$(CYAN)╔══════════════════════════════════════════════════════════╗$(RESET)"
@echo "$(CYAN)║$(RESET) $(BLUE)$(PROJECT_NAME) Build System$(RESET) $(CYAN)║$(RESET)"
@echo "$(CYAN)╚══════════════════════════════════════════════════════════╝$(RESET)"
@echo ""
@echo "$(GREEN)Building:$(RESET)"
@echo " $(YELLOW)make build$(RESET) - Build all binaries ($(BINARIES))"
@echo " $(YELLOW)make build-release$(RESET) - Build optimized release binaries"
@echo " $(YELLOW)make build MODE=release$(RESET) - Build with custom mode"
@echo ""
@echo "$(GREEN)Testing & Quality:$(RESET)"
@echo " $(YELLOW)make test$(RESET) - Run all tests"
@echo " $(YELLOW)make lint$(RESET) - Run clippy and format check"
@echo " $(YELLOW)make format$(RESET) - Format all code with rustfmt"
@echo " $(YELLOW)make coverage$(RESET) - Generate test coverage report"
@echo " $(YELLOW)make check$(RESET) - Build + lint + test"
@echo " $(YELLOW)make check-all$(RESET) - Build + lint + coverage"
@echo ""
@echo "$(GREEN)Cleaning:$(RESET)"
@echo " $(YELLOW)make clean$(RESET) - Clean bin directory"
@echo " $(YELLOW)make clean-all$(RESET) - Full clean (cargo clean)"
@echo ""
@echo "$(GREEN)Utilities:$(RESET)"
@echo " $(YELLOW)make verovio$(RESET) - Sets up the Verovio submodule"
@echo " $(YELLOW)make push$(RESET) - Pushes to Codeberg and Github"
@echo " $(YELLOW)make publish$(RESET) - WIP: Publishes all crates to crates.io"
@echo " $(YELLOW)make tracked-files$(RESET) - Save list of tracked files"
@echo ""
@echo "$(GREEN)Information:$(RESET)"
@echo " $(YELLOW)make info$(RESET) - Show build information"
@echo " $(YELLOW)make check-tools$(RESET) - Verify required tools are installed"
@echo ""
@echo "$(CYAN)Current status:$(RESET) Branch: $(GIT_BRANCH) | Commit: $(GIT_COMMIT)"
@echo ""
# Info target
.PHONY: info
info:
@echo ""
@echo "$(CYAN)╔══════════════════════════════════════════════════════════╗$(RESET)"
@echo "$(CYAN)║$(RESET) $(BLUE)Build Information$(RESET) $(CYAN)║$(RESET)"
@echo "$(CYAN)╚══════════════════════════════════════════════════════════╝$(RESET)"
@echo ""
@echo "$(GREEN)Project:$(RESET)"
@echo " Name: $(PROJECT_NAME)"
@echo " Build Mode: $(MODE)"
@echo " Build Time: $(BUILD_TIME)"
@echo ""
@echo "$(GREEN)Paths:$(RESET)"
@echo " Binary Dir: $(BIN_DIR)/"
@echo " Target Dir: $(TARGET)/"
@echo " Workspace: $$(pwd)"
@echo ""
@echo "$(GREEN)Git:$(RESET)"
@echo " Branch: $(GIT_BRANCH)"
@echo " Commit: $(GIT_COMMIT)"
@echo ""
@echo "$(GREEN)Tools:$(RESET)"
@echo " Rust: $(RUST_VERSION)"
@echo " Cargo: $$(cargo --version 2>/dev/null || echo 'not found')"
@echo " Rustfmt: $$(rustfmt --version 2>/dev/null || echo 'not found')"
@echo " Clippy: $$(cargo clippy --version 2>/dev/null || echo 'not found')"
@echo ""
@echo "$(GREEN)Binaries:$(RESET)"
@for bin in $(BINARIES); do \
if [ -f $(BIN_DIR)/$$bin ]; then \
echo " $$bin: $(GREEN)✓ installed$(RESET)"; \
else \
echo " $$bin: $(RED)✗ not built$(RESET)"; \
fi; \
done
@echo ""
verovio:
@echo "$(BLUE)Setting up Verovio...$(RESET)"
@git submodule add https://github.com/rism-digital/verovio.git verovio
@cd verovio && git checkout version-$(VEROVIO_VERSION) && cd ..
@echo "$(GREEN)✓ Finished setting up verovio submodule$(RESET)"
.PHONY: sync-fonts
sync-fonts:
@echo "$(BLUE)Syncing fonts from verovio submodule...$(RESET)"
@if [ ! -d verovio/data ]; then \
echo "$(RED)✗ verovio/data not found. Run 'git submodule update --init' first.$(RESET)"; \
exit 1; \
fi
@rm -rf crates/verovioxide-data/data
@cp -r verovio/data crates/verovioxide-data/data
@echo "$(GREEN)✓ Fonts synced to crates/verovioxide-data/data/$(RESET)"
@du -sh crates/verovioxide-data/data/
# Check tools target
.PHONY: check-tools
check-tools:
@echo "$(BLUE)Checking for required tools...$(RESET)"
@command -v rustc >/dev/null 2>&1 && echo "$(GREEN)✓ rustc found (version: $$(rustc --version))$(RESET)" || echo "$(RED)✗ rustc not found$(RESET)"
@command -v cargo >/dev/null 2>&1 && echo "$(GREEN)✓ cargo found (version: $$(cargo --version))$(RESET)" || echo "$(RED)✗ cargo not found$(RESET)"
@command -v rustfmt >/dev/null 2>&1 && echo "$(GREEN)✓ rustfmt found$(RESET)" || echo "$(RED)✗ rustfmt not found (install: rustup component add rustfmt)$(RESET)"
@cargo clippy --version >/dev/null 2>&1 && echo "$(GREEN)✓ clippy found$(RESET)" || echo "$(RED)✗ clippy not found (install: rustup component add clippy)$(RESET)"
@cargo llvm-cov --version >/dev/null 2>&1 && echo "$(GREEN)✓ llvm-cov found$(RESET)" || echo "$(RED)✗ llvm-cov not found (install: cargo install cargo-llvm-cov)$(RESET)"
@command -v git >/dev/null 2>&1 && echo "$(GREEN)✓ git found$(RESET)" || echo "$(RED)✗ git not found$(RESET)"
@test -f Cargo.toml && echo "$(GREEN)✓ Cargo.toml found$(RESET)" || echo "$(RED)✗ Cargo.toml not found$(RESET)"
# Build directory creation
$(BIN_DIR):
@echo "$(BLUE)Creating bin directory...$(RESET)"
@mkdir -p $(BIN_DIR)
@echo "$(GREEN)✓ Directory created$(RESET)"
# Build targets
.PHONY: build
build: clean $(BIN_DIR)
@echo "$(BLUE)Building $(PROJECT_NAME) in $(MODE) mode...$(RESET)"
@echo "$(CYAN)• Compiling workspace...$(RESET)"
@if [ "$(MODE)" = "release" ]; then \
cargo build --release; \
else \
cargo build; \
fi
@echo "$(CYAN)• Copying binaries to $(BIN_DIR)/$(RESET)"
@for bin in $(BINARIES); do \
if [ -f $(TARGET)/$$bin ]; then \
cp $(TARGET)/$$bin $(BIN_DIR)/$$bin; \
echo " $(GREEN)✓$(RESET) $$bin"; \
else \
echo " $(YELLOW)⚠$(RESET) $$bin not found, skipping"; \
fi; \
done
@echo "$(GREEN)✓ Build complete$(RESET)"
@echo "$(CYAN)→ Binaries available in $(BIN_DIR)/$(RESET)"
.PHONY: build-release
build-release: MODE = release
build-release: TARGET = ./target/$(MODE)
build-release: clean $(BIN_DIR)
@echo "$(BLUE)Building $(PROJECT_NAME) in release mode...$(RESET)"
@echo "$(CYAN)• Compiling optimized workspace...$(RESET)"
@cargo build --release
@echo "$(CYAN)• Copying binaries to $(BIN_DIR)/$(RESET)"
@for bin in $(BINARIES); do \
if [ -f $(TARGET)/$$bin ]; then \
cp $(TARGET)/$$bin $(BIN_DIR)/$$bin; \
echo " $(GREEN)✓$(RESET) $$bin (size: $$(du -h $(BIN_DIR)/$$bin | cut -f1))"; \
else \
echo " $(YELLOW)⚠$(RESET) $$bin not found, skipping"; \
fi; \
done
@echo "$(GREEN)✓ Release build complete$(RESET)"
@echo "$(CYAN)→ Optimized binaries in $(BIN_DIR)/$(RESET)"
# Cleaning targets
.PHONY: clean
clean:
@echo "$(BLUE)Cleaning bin directory...$(RESET)"
@rm -rf $(BIN_DIR)
@echo "$(GREEN)✓ Clean complete$(RESET)"
.PHONY: clean-all
clean-all: clean
@echo "$(BLUE)Performing full cargo clean...$(RESET)"
@cargo clean
@echo "$(GREEN)✓ Full clean complete$(RESET)"
# Testing & Quality targets
.PHONY: test
test:
@echo "$(BLUE)Running tests...$(RESET)"
@echo "$(CYAN)• Running all workspace tests...$(RESET)"
@cargo test --workspace
@echo "$(GREEN)✓ All tests passed$(RESET)"
.PHONY: lint
lint:
@echo "$(BLUE)Running linter checks...$(RESET)"
@echo "$(CYAN)• Running clippy...$(RESET)"
@cargo clippy --workspace -- -D warnings
@echo "$(GREEN)✓ Clippy passed$(RESET)"
@echo "$(CYAN)• Checking code formatting...$(RESET)"
@cargo fmt --all -- --check
@echo "$(GREEN)✓ Format check passed$(RESET)"
.PHONY: format
format:
@echo "$(BLUE)Formatting code...$(RESET)"
@echo "$(CYAN)• Running rustfmt on all files...$(RESET)"
@cargo fmt --all
@echo "$(GREEN)✓ Code formatted$(RESET)"
.PHONY: coverage
coverage:
@echo "$(BLUE)Generating test coverage report...$(RESET)"
@echo "$(CYAN)• Running tests with coverage...$(RESET)"
@cargo llvm-cov --workspace --ignore-filename-regex 'verovioxide-sys'
@echo "$(GREEN)✓ Coverage report generated$(RESET)"
@echo "$(YELLOW)→ For detailed HTML report, run: make coverage-html$(RESET)"
.PHONY: coverage-html
coverage-html:
@echo "$(BLUE)Generating HTML coverage report...$(RESET)"
@echo "$(CYAN)• Running tests with coverage...$(RESET)"
@cargo llvm-cov --html --lib --workspace --ignore-filename-regex 'verovioxide-sys'
@echo "$(GREEN)✓ HTML coverage report generated$(RESET)"
@echo "$(CYAN)→ Report: target/llvm-cov/html/index.html$(RESET)"
# Combined check targets
.PHONY: check
check: build lint test
@echo ""
@echo "$(GREEN)✓ All checks passed (build + lint + test)$(RESET)"
@echo ""
.PHONY: check-all
check-all: build lint coverage
@echo ""
@echo "$(GREEN)✓ Full validation complete (build + lint + coverage)$(RESET)"
@echo ""
# Utility targets
.PHONY: tracked-files
tracked-files:
@echo "$(BLUE)Saving tracked files list...$(RESET)"
@mkdir -p $(TARGET)
@git ls-files > $(TARGET)/git-tracked-files.txt
@echo "$(GREEN)✓ Tracked files saved to $(TARGET)/git-tracked-files.txt$(RESET)"
@echo "$(CYAN)• Total files: $$(wc -l < $(TARGET)/git-tracked-files.txt)$(RESET)"
push:
@echo "$(BLUE)Pushing changes ...$(RESET)"
@for remote in $(GIT_REMOTES); do \
echo "$(CYAN)• $$remote:$(RESET)"; \
git push $$remote main && git push $$remote --tags; \
echo "$(GREEN)✓ Pushed$(RESET)"; \
done
# Crates in dependency order (leaf crates first, dependent crates later)
# ECL crates: design -> core -> steps -> workflows -> cli -> $(CODE_NAME)
# Fabryk crates: core -> (client, acl, storage) -> query -> api -> (mcp, cli) -> fabryk
PUBLISH_ORDER := verovioxide-data verovioxide-sys verovioxide
# crates.io rate limit delay (seconds)
PUBLISH_DELAY := 372
.PHONY: publish
publish:
@echo ""
@echo "$(CYAN)╔══════════════════════════════════════════════════════════╗$(RESET)"
@echo "$(CYAN)║$(RESET) $(BLUE)Publishing $(PROJECT_NAME) Crates to crates.io$(RESET) $(CYAN)║$(RESET)"
@echo "$(CYAN)╚══════════════════════════════════════════════════════════╝$(RESET)"
@echo ""
@echo "$(YELLOW)⚠ This will publish all crates in dependency order$(RESET)"
@echo "$(YELLOW)⚠ Ensure all tests pass and versions are updated$(RESET)"
@echo ""
@read -p "Continue? [y/N] " -n 1 -r; \
echo; \
if [[ ! $$REPLY =~ ^[Yy]$$ ]]; then \
echo "$(RED)✗ Aborted$(RESET)"; \
exit 1; \
fi
@echo ""
@echo "$(BLUE)Publishing crates in dependency order...$(RESET)"
@echo "$(YELLOW)Note: Publishing ~10 new crates/hour to avoid rate limits$(RESET)"
@echo ""
@for crate in $(PUBLISH_ORDER); do \
echo ""; \
echo "$(CYAN)• Publishing $$crate...$(RESET)"; \
output=$$(cd crates/$$crate && cargo publish 2>&1); \
result=$$?; \
if [ $$result -eq 0 ]; then \
echo " $(GREEN)✓$(RESET) $$crate published successfully"; \
echo " $(YELLOW)→ Waiting 6 minutes for crates.io rate limit and index update...$(RESET)"; \
sleep $(PUBLISH_DELAY); \
elif echo "$$output" | grep -q "already exists"; then \
echo " $(YELLOW)⊙$(RESET) $$crate already published, skipping"; \
elif echo "$$output" | grep -q "429 Too Many Requests"; then \
echo " $(YELLOW)⚠$(RESET) Rate limit hit for $$crate"; \
retry_after=$$(echo "$$output" | sed -n 's/.*after \([^.]*\).*/\1/p' | head -1); \
if [ -n "$$retry_after" ]; then \
echo " $(YELLOW)→$(RESET) Server says: retry after $$retry_after"; \
fi; \
echo " $(YELLOW)→$(RESET) Tip: Email help@crates.io to request a limit increase"; \
echo " $(YELLOW)→$(RESET) Or wait and run: cd crates/$$crate && cargo publish"; \
exit 1; \
else \
echo " $(RED)✗$(RESET) Failed to publish $$crate"; \
echo "$$output"; \
exit 1; \
fi; \
done
@echo ""
@echo "$(GREEN)✓ All crates published successfully!$(RESET)"
@echo ""
.PHONY: publish-dry-run
publish-dry-run:
@echo ""
@echo "$(CYAN)╔══════════════════════════════════════════════════════════╗$(RESET)"
@echo "$(CYAN)║$(RESET) $(BLUE)Dry Run: Publishing $(PROJECT_NAME) Crates$(RESET) $(CYAN)║$(RESET)"
@echo "$(CYAN)╚══════════════════════════════════════════════════════════╝$(RESET)"
@echo ""
@echo "$(BLUE)Publishing order (in dependency order):$(RESET)"
@i=1; \
for crate in $(PUBLISH_ORDER); do \
echo " $(YELLOW)$$i.$(RESET) $$crate"; \
i=$$((i+1)); \
done
@echo ""
@echo "$(BLUE)Verifying each crate can be packaged...$(RESET)"
@for crate in $(PUBLISH_ORDER); do \
echo ""; \
echo "$(CYAN)• Packaging $$crate...$(RESET)"; \
if (cd crates/$$crate && cargo package --list > /dev/null 2>&1); then \
echo " $(GREEN)✓$(RESET) $$crate is ready for publishing"; \
else \
echo " $(RED)✗$(RESET) $$crate failed validation"; \
(cd crates/$$crate && cargo package --list); \
exit 1; \
fi; \
done
@echo ""
@echo "$(GREEN)✓ All crates ready for publishing!$(RESET)"
@echo "$(CYAN)→ Run 'make publish' to publish to crates.io$(RESET)"
@echo "$(CYAN)→ Or 'make publish-one CRATE=crate-name' to publish a single crate$(RESET)"
@echo ""
.PHONY: publish-one
publish-one:
@if [ -z "$(CRATE)" ]; then \
echo "$(RED)Error: CRATE variable not set$(RESET)"; \
echo "Usage: make publish-one CRATE=$(CODE_NAME)"; \
exit 1; \
fi
@echo ""
@echo "$(CYAN)Publishing $(CRATE)...$(RESET)"
@cd crates/$(CRATE) && cargo publish
@echo ""
@echo "$(GREEN)✓ Published $(CRATE)$(RESET)"
@echo ""