-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standardise CI and Makefile across repositories #367
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Thank you! I left one comment inline. Once this is addressed, we can merge.
Makefile
Outdated
.PHONY: install-node | ||
install-node: ## Installs node with testing feature enabled | ||
cargo install --features testing --path bin/node | ||
|
||
.PHONY: install-faucet | ||
install-faucet: ## Installs faucet with testing feature enabled | ||
cargo install --features testing --path bin/faucet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we have 2 versions of these commands? One for installing with testing
feature and one without?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure.
* Replaced .toml by classical Makefile + updated CI * Fixed on: section * Updated Changelog * Cargo updated + added commands for install with testing
* Replaced .toml by classical Makefile + updated CI * Fixed on: section * Updated Changelog * Cargo updated + added commands for install with testing
In this PR I propose a standardisation of the CI and Makefile across Miden repositories.
With the following changes:
Once this first one is approved I will port it to the following repos:
Closes: #363