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

Refactor workflows #432

Closed
wants to merge 1 commit into from
Closed
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
83 changes: 27 additions & 56 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,80 +5,51 @@ on:
workflow_dispatch:

jobs:
geth:
build:
strategy:
matrix:
settings:
- arch: linux/amd64
client: [geth, reth, nethermind]
arch:
- platform: linux/amd64
runs-on: ubuntu-24.04
- arch: linux/arm64
- platform: linux/arm64
runs-on: ubuntu-24.04-arm
runs-on: ${{ matrix.settings.runs-on }}
include:
- client: reth
arch: linux/amd64
features: jemalloc,asm-keccak,optimism
- client: reth
arch: linux/arm64
features: jemalloc,optimism

runs-on: ${{ matrix.arch.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v3
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: geth/Dockerfile
push: false
platforms: ${{ matrix.settings.arch }}
- name: Prepare
run: |
PLATFORM_PAIR=${${{ matrix.arch.platform }}//\//-}
echo "IMAGE_NAME=${{ matrix.client }}-$PLATFORM_PAIR" >> $GITHUB_ENV

reth:
strategy:
matrix:
settings:
- arch: linux/amd64
runs-on: ubuntu-24.04
features: jemalloc,asm-keccak,optimism
- arch: linux/arm64
runs-on: ubuntu-24.04-arm
features: jemalloc,optimism
runs-on: ${{ matrix.settings.runs-on}}
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: reth/Dockerfile
file: ${{ matrix.client }}/Dockerfile
push: false
platforms: ${{ matrix.arch }}
outputs: type=docker,dest=${{ runner.temp }}/${{ env.IMAGE_NAME }}.tar
build-args: |
FEATURES=${{ matrix.settings.features }}
platforms: ${{ matrix.settings.arch }}
FEATURES=${{ matrix.features }}

nethermind:
strategy:
matrix:
settings:
- arch: linux/amd64
runs-on: ubuntu-24.04
- arch: linux/arm64
runs-on: ubuntu-24.04-arm
runs-on: ${{ matrix.settings.runs-on}}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Upload artifact
uses: actions/upload-artifact@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: nethermind/Dockerfile
push: false
platforms: ${{ matrix.settings.arch }}
name: ${{ env.IMAGE_NAME }}
path: ${{ runner.temp }}/${{ env.IMAGE_NAME }}.tar