Configure holocene activation time for mainnet #97
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: | |
jobs: | |
linux_amd64: | |
name: Verify image build on linux/amd64 platform | |
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: | |
name: Verify image build on linux/arm64 platform | |
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 |