Skip to content

Update Reth client to v1.1.1 #77

Update Reth client to v1.1.1

Update Reth client to v1.1.1 #77

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
linux_amd64:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- file: geth/Dockerfile
features:
- file: reth/Dockerfile
features: jemalloc,asm-keccak,optimism
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build the Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ${{ matrix.file }}
push: false
build-args: |
FEATURES=${{ matrix.features }}
platforms: linux/amd64
linux_arm64:
runs-on: linux-arm64
strategy:
matrix:
include:
- file: geth/Dockerfile
features:
- file: reth/Dockerfile
features: jemalloc,optimism
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build the Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ${{ matrix.file }}
push: false
build-args: |
FEATURES=${{ matrix.features }}
platforms: linux/arm64