Skip to content

Commit

Permalink
Added arm build for focal
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrst88 committed Nov 9, 2023
1 parent 5feec4e commit 015ad4a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/handle_llvm_runner_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: 'linux/amd64,linux/arm64,linux/arm64/v8'
platforms: ${{ matrix.image_name == 'llvm_runner_jammy' && 'linux/amd64,linux/arm64,linux/arm64/v8' || 'linux/amd64' }}

- name: Log in to Docker Hub
if: github.event_name == 'push'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
Expand All @@ -71,9 +72,9 @@ jobs:
- name: Build and optionally push Docker image
uses: docker/build-push-action@v5
with:
push: true
push: ${{ github.event_name == 'push' }}
tags: |
matterlabs/${{ matrix.image_name }}:${{ steps.set_output.outputs.sha_short }}-rc-54
matterlabs/${{ matrix.image_name }}:rc-54
matterlabs/${{ matrix.image_name }}:${{ steps.set_output.outputs.sha_short }}
matterlabs/${{ matrix.image_name }}:latest
file: images/llvm_runner/${{ matrix.image_name == 'llvm_runner_jammy' && 'jammy.' || '' }}Dockerfile
platforms: 'linux/amd64,linux/arm64,linux/arm64/v8'
platforms: ${{ matrix.image_name == 'llvm_runner_jammy' && 'linux/amd64,linux/arm64,linux/arm64/v8' || 'linux/amd64' }}

0 comments on commit 015ad4a

Please sign in to comment.