Docker-arm64 #17
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: Docker-arm64 | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: "tag of this image (suffix -arm64 is added automatically)" | |
required: true | |
type: string | |
jobs: | |
build-and-push-arm64-image: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: | |
- aarch64 | |
timeout-minutes: 1440 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
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:${{inputs.tag}}-arm64 | |
- name: Build arm64 image | |
run: | | |
docker build --platform linux/arm64/v8 -t scrolltech/l2geth:${{inputs.tag}}-arm64 . | |
docker push scrolltech/l2geth:${{inputs.tag}}-arm64 | |
build-and-push-amd64-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Extract docker metadata | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: scrolltech/l2geth | |
tags: | | |
type=ref,event=tag,enable=${{ github.event_name == 'push' }} | |
type=raw,value=latest,enable=${{ github.event_name == 'release' }} | |
flavor: | | |
latest=false | |
- 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: | |
# context: . | |
# file: Dockerfile | |
# push: true | |
# tags: scrolltech/l2geth:${{inputs.tag}}-amd64 | |
- name: Build amd64 image | |
run: | | |
docker build --platform linux/amd64 -t scrolltech/l2geth:${{inputs.tag}}-amd64 . | |
docker push scrolltech/l2geth:${{inputs.tag}}-amd64 | |
publish-multi-arch-image: | |
runs-on: ubuntu-latest | |
needs: | |
- build-and-push-amd64-image | |
- build-and-push-arm64-image | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Extract docker metadata | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: scrolltech/l2geth | |
tags: | | |
type=ref,event=tag,enable=${{ github.event_name == 'push' }} | |
type=raw,value=latest,enable=${{ github.event_name == 'release' }} | |
flavor: | | |
latest=false | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build multiarch image | |
run: | | |
docker manifest create scrolltech/l2geth:${image_multiarch_name} --amend scrolltech/l2geth:${image_amd64_name} --amend scrolltech/l2geth:${image_arm64_name} && \ | |
docker manifest push scrolltech/l2geth:${image_multiarch_name} | |
env: | |
image_arm64_name: "${{inputs.tag}}-arm64" | |
image_amd64_name: "${{inputs.tag}}-amd64" | |
image_multiarch_name: "${{inputs.tag}}-multiarch" |