Skip to content

Commit

Permalink
test build with macos and ubuntu arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaizet-ledger committed Jun 19, 2024
1 parent e939250 commit 9858807
Showing 1 changed file with 38 additions and 3 deletions.
41 changes: 38 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:
tags: scrolltech/l2geth:${{github.ref_name}}-amd64
# cache-from: type=gha,scope=${{ github.workflow }}
# cache-to: type=gha,scope=${{ github.workflow }}
build-and-push-arm64-image:
runs-on: [self-hosted, Linux, ARM64, scroll-runner]
build-and-push-mac-runner:
#runs-on: [self-hosted, Linux, ARM64, scroll-runner]
runs-on: [macos-12]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -53,6 +54,40 @@ jobs:
file: Dockerfile
# push: ${{ startsWith(github.ref, 'refs/tags/') }}
push: true
tags: scrolltech/l2geth:${{github.ref_name}}-arm64
tags: scrolltech/l2geth:${{github.ref_name}}-arm64-macos
# cache-from: type=gha,scope=${{ github.workflow }}
# cache-to: type=gha,scope=${{ github.workflow }}

build-and-push-arm64-ubuntu-runner:
runs-on: ubuntu-latest
strategy:
matrix:
arch:
- amd64
- aarch64

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up QEMU
if: matrix.arch == 'aarch64'
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker buildx create --name multiarch --driver docker-container --use
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build docker image
uses: docker/build-push-action@v2
with:
platforms: linux/arm64
context: .
file: Dockerfile
push: true
tags: scrolltech/l2geth:${{github.ref_name}}-arm64-ubuntu

0 comments on commit 9858807

Please sign in to comment.