Skip to content

Commit d056b51

Browse files
authored
Update Reth for Fjord CL Support (#277)
* Update Reth for Fjord fixes * Remove arm reth build
1 parent acc4e30 commit d056b51

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/docker.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ jobs:
5555
include:
5656
- arch: linux/amd64
5757
features: jemalloc,asm-keccak,optimism
58-
- arch: linux/arm64
59-
features: jemalloc,optimism
6058
steps:
6159
- name: Checkout
6260
uses: actions/checkout@v2
@@ -88,4 +86,4 @@ jobs:
8886
labels: ${{ steps.meta.outputs.labels }}
8987
build-args: |
9088
FEATURES=${{ matrix.features }}
91-
platforms: ${{ matrix.arch }}
89+
platforms: ${{ matrix.arch }}

reth/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
1414
RUN cd op-node && \
1515
make VERSION=$VERSION op-node
1616

17-
FROM rust:1.78 AS reth
17+
FROM rust:1.79 AS reth
1818

1919
ARG FEATURES=jemalloc,asm-keccak,optimism
2020

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

2525
ENV REPO=https://github.com/paradigmxyz/reth.git
26-
ENV COMMIT=e5111f03396f661bdff69d04047d0c076bad75f3
26+
ENV COMMIT=7d55a14b1fca006260737dec1f9d3e93cd4c2008
2727

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

0 commit comments

Comments
 (0)