Skip to content

Commit 5e22115

Browse files
authored
Merge pull request #1636 from input-output-hk/jpraynaud/fix-portable-feature-makefile
Remove 'portable' feature in make commands
2 parents 8aec2a4 + d43f071 commit 5e22115

File tree

11 files changed

+16
-21
lines changed

11 files changed

+16
-21
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.4.57"
3+
version = "0.4.58"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-aggregator/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ CARGO = cargo
55
all: test build
66

77
build:
8-
# We use 'portable' feature to avoid SIGILL crashes
9-
${CARGO} build --release --features portable,bundle_openssl
8+
${CARGO} build --release --features bundle_openssl
109
cp ../target/release/mithril-aggregator .
1110

1211
run: build

mithril-client-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-client-cli"
3-
version = "0.7.10"
3+
version = "0.7.11"
44
description = "A Mithril Client"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-client-cli/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ CARGO = cargo
1010
all: test build
1111

1212
build:
13-
# We use 'portable' feature to avoid SIGILL crashes
14-
${CARGO} build --release --features portable,bundle_openssl
13+
${CARGO} build --release --features bundle_openssl
1514
cp ../target/release/mithril-client .
1615

1716
run: build

mithril-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-client"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
description = "Mithril client library"
55
authors = { workspace = true }
66
edition = { workspace = true }
@@ -76,7 +76,7 @@ full = ["fs"]
7676

7777
# Enable file system releated functionnality, right now that mean ony snapshot download
7878
fs = ["flate2", "flume", "tar", "tokio/rt", "zstd"]
79-
portable = [] # deprecated, will be removed soon
79+
portable = [] # deprecated, will be removed soon
8080
unstable = []
8181

8282
[package.metadata.docs.rs]

mithril-client/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ CARGO = cargo
1010
all: test build
1111

1212
build:
13-
# We use 'portable' feature to avoid SIGILL crashes
14-
${CARGO} build --release --features portable,full
13+
${CARGO} build --release --features full
1514

1615
test:
1716
${CARGO} test --features full

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-common"
3-
version = "0.3.30"
3+
version = "0.3.31"
44
description = "Common types, interfaces, and utilities for Mithril nodes."
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ FEATURES := $(shell ${CARGO} metadata --quiet --no-deps \
1010
all: test build
1111

1212
build:
13-
# We use 'portable' feature to avoid SIGILL crashes
14-
${CARGO} build --release --features portable,full
13+
${CARGO} build --release --features full
1514

1615
test:
1716
${CARGO} test --features full

mithril-signer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-signer"
3-
version = "0.2.123"
3+
version = "0.2.124"
44
description = "A Mithril Signer"
55
authors = { workspace = true }
66
edition = { workspace = true }

0 commit comments

Comments
 (0)