File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
internal/mithril-protocol-config Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ COMPONENTS = mithril-aggregator mithril-client mithril-client-cli mithril-client
3
3
internal/mithril-build-script internal/mithril-cli-helper internal/mithril-doc \
4
4
internal/mithril-dmq \
5
5
internal/mithril-doc-derive internal/mithril-era internal/mithril-metric internal/mithril-persistence \
6
+ internal/mithril-protocol-config \
6
7
internal/mithril-resource-pool internal/mithril-ticker \
7
8
internal/cardano-node/mithril-cardano-node-chain internal/cardano-node/mithril-cardano-node-internal-database \
8
9
internal/signed-entity/mithril-signed-entity-lock internal/signed-entity/mithril-signed-entity-preloader \
Original file line number Diff line number Diff line change
1
+ .PHONY : all build test check doc
2
+
3
+ CARGO = cargo
4
+
5
+ all : test build
6
+
7
+ build :
8
+ ${CARGO} build --release
9
+
10
+ test :
11
+ ${CARGO} test
12
+
13
+ check :
14
+ ${CARGO} check --release --all-features --all-targets
15
+ ${CARGO} clippy --release --all-features --all-targets
16
+ ${CARGO} fmt --check
17
+
18
+ doc :
19
+ ${CARGO} doc --no-deps --open
You can’t perform that action at this time.
0 commit comments