File tree Expand file tree Collapse file tree 3 files changed +4
-15
lines changed
website/docs/developers/scripts/release Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515### Added
1616
1717- ** Development Tools** : Add ` setup-taplo ` and ` setup ` Makefile targets to
18- simplify development environment setup. Add ` heartbeats-db-init ` target to
19- initialize heartbeats database. Update ` release-validate ` script to test only
20- packages that are tested in CI, avoiding untested packages with failing tests
18+ simplify development environment setup. Update ` release-validate ` script to
19+ test only packages that are tested in CI, avoiding untested packages with
20+ failing tests
2121 ([ #1573 ] ( https://github.com/o1-labs/mina-rust/pull/1573 ) )
2222- ** CI** : Add validation workflows for block producer nodes infrastructure,
2323 including connectivity and API capability testing similar to plain nodes
Original file line number Diff line number Diff line change @@ -393,11 +393,6 @@ docker-build-frontend: ## Build frontend Docker image
393393docker-build-fuzzing : # # Build fuzzing Docker image
394394 docker build -t $(DOCKER_ORG ) /mina-rust-fuzzing:$(GIT_COMMIT ) tools/fuzzing/
395395
396- .PHONY : heartbeats-db-init
397- heartbeats-db-init : # # Initialize the heartbeats database with schema
398- @sqlite3 /tmp/heartbeats.db < tools/heartbeats-processor/schema.sql
399- @echo " Database initialized at /tmp/heartbeats.db"
400-
401396.PHONY : docker-build-light
402397docker-build-light : # # Build light Docker image
403398 docker build -t $(DOCKER_ORG ) /mina-rust-light:$(GIT_COMMIT ) \
Original file line number Diff line number Diff line change @@ -9,12 +9,6 @@ make setup-taplo
99echo " Cleaning build artifacts to avoid version conflicts..."
1010cargo clean
1111
12- echo " Initializing heartbeats database..."
13- make heartbeats-db-init
14-
15- echo " Exporting DATABASE_URL for SQLx..."
16- export DATABASE_URL=" sqlite:///tmp/heartbeats.db"
17-
1812echo " === Testing stable Rust packages ==="
1913
2014echo " Testing mina-node-native..."
@@ -47,4 +41,4 @@ make fix-trailing-whitespace
4741echo " Verifying no trailing whitespace remains..."
4842make check-trailing-whitespace
4943
50- echo " Release validation completed successfully!"
44+ echo " Release validation completed successfully!"
You can’t perform that action at this time.
0 commit comments