Skip to content

Commit

Permalink
Update Reth for Fjord CL Support (#277)
Browse files Browse the repository at this point in the history
* Update Reth for Fjord fixes

* Remove arm reth build
  • Loading branch information
danyalprout authored Jun 17, 2024
1 parent acc4e30 commit d056b51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
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

0 comments on commit d056b51

Please sign in to comment.