Skip to content

Commit

Permalink
Add QEMU setup for multi-platform builds in build-ee.yml
Browse files Browse the repository at this point in the history
- Added QEMU setup using `docker/setup-qemu-action@v2` to enable emulation for multiple architectures.
- Installed `qemu` and `binfmt-support` as dependencies to ensure proper handling of multi-platform builds.
  • Loading branch information
marcosmamorim committed Jan 6, 2025
1 parent 2de38d5 commit 72fd504
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-ee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ jobs:

- uses: actions/setup-python@v4

- name: Setup QEMU for multi-platform builds
uses: docker/setup-qemu-action@v2
with:
platforms: all

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y qemu binfmt-support
- name: Buildah Action
uses: redhat-actions/buildah-build@v2
id: build-image
Expand Down

0 comments on commit 72fd504

Please sign in to comment.