Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
liamaharon committed Dec 2, 2024
1 parent f48bf17 commit cba222c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ ENV SCCACHE_DIR=/sccache
FROM base AS planner
WORKDIR /app

# COPY . .
COPY ./Cargo.lock ./Cargo.lock
COPY ./Cargo.toml ./Cargo.toml
COPY ./.git ./.git
COPY ./crates/ ./crates/
COPY . .
# COPY ./Cargo.lock ./Cargo.lock
# COPY ./Cargo.toml ./Cargo.toml
# COPY ./.git ./.git
# COPY ./crates/ ./crates/

RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/usr/local/cargo/git \
Expand All @@ -50,11 +50,11 @@ COPY --from=planner /app/recipe.json recipe.json
RUN --mount=type=cache,target=$SCCACHE_DIR,sharing=locked \
cargo chef cook --release --recipe-path recipe.json

# COPY . .
COPY ./Cargo.lock ./Cargo.lock
COPY ./Cargo.toml ./Cargo.toml
COPY ./.git ./.git
COPY ./crates/ ./crates/
COPY . .
# COPY ./Cargo.lock ./Cargo.lock
# COPY ./Cargo.toml ./Cargo.toml
# COPY ./.git ./.git
# COPY ./crates/ ./crates/

RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/usr/local/cargo/git \
Expand Down
2 changes: 1 addition & 1 deletion crates/rbuilder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ secp256k1 = { version = "0.29", features = [
"recovery",
] }
rayon = "1.8.0"
flate2 = "1.0.27"
flate2 = "1.0.28"
# Version required by ethereum-consensus beacon-api-client
mev-share-sse = { git = "https://github.com/paradigmxyz/mev-share-rs", rev = "9eb2b0138ab3202b9eb3af4b19c7b3bf40b0faa8", default-features = false }
jsonrpsee = { version = "0.20.3", features = ["full"] }
Expand Down
1 change: 0 additions & 1 deletion crates/rbuilder/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//! test
pub mod backtest;
pub mod beacon_api_client;
pub mod building;
Expand Down

0 comments on commit cba222c

Please sign in to comment.