Skip to content

Commit

Permalink
multi-build
Browse files Browse the repository at this point in the history
  • Loading branch information
ktechmidas committed Oct 11, 2024
1 parent 82baaaf commit 1d1d6a4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,17 @@ jobs:
steps:
- uses: actions/checkout@v4

# Linux ARM64 build in Docker
# Set up QEMU to emulate ARM64 on the AMD64 host
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64

# Set up Docker Buildx for multi-platform builds
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

# Linux ARM64 build in Docker with QEMU emulation
- name: Build in ARM64 Docker container (Linux)
if: matrix.os == 'ubuntu-latest' && matrix.arch == 'arm64'
run: |
Expand Down

0 comments on commit 1d1d6a4

Please sign in to comment.