Skip to content

Commit

Permalink
chore: remove bundle_tls from makefiles recipes
Browse files Browse the repository at this point in the history
As it ask for supplemental dependencies that are not consistent with the
other recipes, plus they are not used in the CI.
  • Loading branch information
Alenar committed Jan 29, 2025
1 parent 81e3feb commit f5a37f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mithril-aggregator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CARGO = cargo
all: test build

build:
${CARGO} build --release --features bundle_tls
${CARGO} build
cp ../target/release/mithril-aggregator .

run: build
Expand Down
2 changes: 1 addition & 1 deletion mithril-client-cli/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ CARGO = cargo
all: test build

build:
${CARGO} build --release --features bundle_tls
${CARGO} build
cp ../target/release/mithril-client .

run: build
Expand Down
2 changes: 1 addition & 1 deletion mithril-signer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CARGO = cargo
all: test build

build:
${CARGO} build --release --features bundle_tls
${CARGO} build --release
cp ../target/release/mithril-signer .

run: build
Expand Down

0 comments on commit f5a37f9

Please sign in to comment.