Update reth to 1.1.4dev hotfix commit #196
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
geth: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [ linux/amd64, linux/arm64 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
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@v4 | |
with: | |
context: . | |
file: geth/Dockerfile | |
push: false | |
platforms: ${{ matrix.arch }} | |
reth: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- arch: linux/amd64 | |
features: jemalloc,asm-keccak,optimism | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
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@v4 | |
with: | |
context: . | |
file: reth/Dockerfile | |
push: false | |
build-args: | | |
FEATURES=${{ matrix.features }} | |
platforms: ${{ matrix.arch }} | |
nethermind: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [ linux/amd64 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
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: nethermind/Dockerfile | |
push: false | |
platforms: ${{ matrix.arch }} | |