Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Reth for Fjord CL Support #277

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ jobs:
include:
- arch: linux/amd64
features: jemalloc,asm-keccak,optimism
- arch: linux/arm64
features: jemalloc,optimism
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -88,4 +86,4 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
build-args: |
FEATURES=${{ matrix.features }}
platforms: ${{ matrix.arch }}
platforms: ${{ matrix.arch }}
4 changes: 2 additions & 2 deletions reth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
RUN cd op-node && \
make VERSION=$VERSION op-node

FROM rust:1.78 AS reth
FROM rust:1.79 AS reth

ARG FEATURES=jemalloc,asm-keccak,optimism

Expand All @@ -23,7 +23,7 @@ WORKDIR /app
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential

ENV REPO=https://github.com/paradigmxyz/reth.git
ENV COMMIT=e5111f03396f661bdff69d04047d0c076bad75f3
ENV COMMIT=7d55a14b1fca006260737dec1f9d3e93cd4c2008

RUN git clone $REPO . && git checkout $COMMIT
RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf
Expand Down
Loading