From 358c716ed3a11ba1970fc862ed9e9d208573b943 Mon Sep 17 00:00:00 2001 From: Francis Li Date: Sat, 1 Feb 2025 14:33:46 -0800 Subject: [PATCH] Update on PR --- .github/workflows/pr.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8900322b..d3951272 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,16 +9,23 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - arch: [ linux/amd64, linux/arm64 ] + arch: [linux/amd64, linux/arm64] steps: - name: Checkout uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} + + # - name: Set up QEMU + # uses: docker/setup-qemu-action@v2 + # with: + # platforms: linux/amd64,linux/arm64 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + - name: Build the Docker image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . file: geth/Dockerfile @@ -39,7 +46,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build the Docker image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . file: reth/Dockerfile @@ -51,7 +58,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - arch: [ linux/amd64 ] + arch: [linux/amd64] steps: - name: Checkout uses: actions/checkout@v3 @@ -66,4 +73,3 @@ jobs: file: nethermind/Dockerfile push: false platforms: ${{ matrix.arch }} -