File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ repository = { workspace = true }
11
11
12
12
[[bench ]]
13
13
name = " mktree_store_sqlite"
14
- path = " benches/mktree_store_sqlite.rs"
15
14
harness = false
16
15
17
16
[dependencies ]
Original file line number Diff line number Diff line change @@ -13,8 +13,11 @@ WORKDIR /app
13
13
COPY . .
14
14
15
15
# 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
17
19
COPY mithril-signer/Cargo.toml /app/mithril-signer/
20
+ COPY mithril-signer/benches/* /app/mithril-signer/benches/
18
21
RUN echo "fn main () {}" > /app/mithril-signer/src/main.rs
19
22
RUN cargo build --release -p mithril-signer --manifest-path /app/mithril-signer/Cargo.toml
20
23
You can’t perform that action at this time.
0 commit comments