Skip to content

Commit 1a941b7

Browse files
authored
Merge pull request #1951 from Fuma419/patch-1
setting benchmark path
2 parents 47cdaea + f9ef33b commit 1a941b7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.198"
3+
version = "0.2.199"
44
description = "A Mithril Signer"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-signer/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ WORKDIR /app
1313
COPY . .
1414

1515
# Build the app using a dummy main in order to cache dependencies
16-
RUN mv /app/mithril-signer /app/mithril-signer.1 && mkdir -p /app/mithril-signer/src
16+
RUN mv /app/mithril-signer /app/mithril-signer.1 \
17+
&& mkdir -p /app/mithril-signer/src \
18+
&& mkdir -p /app/mithril-signer/benches
1719
COPY mithril-signer/Cargo.toml /app/mithril-signer/
20+
COPY mithril-signer/benches/* /app/mithril-signer/benches/
1821
RUN echo "fn main () {}" > /app/mithril-signer/src/main.rs
1922
RUN cargo build --release -p mithril-signer --manifest-path /app/mithril-signer/Cargo.toml
2023

0 commit comments

Comments
 (0)