Skip to content

Commit 6106b49

Browse files
fix(build): Uses a hard coded qemu for builds (#2209)
1 parent 09b2769 commit 6106b49

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/build.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
fetch-depth: 0
2222
- name: Set up QEMU
2323
uses: docker/setup-qemu-action@v3
24+
with:
25+
## Temporary due to bug in qemu: https://github.com/docker/setup-qemu-action/issues/198
26+
image: tonistiigi/binfmt:qemu-v7.0.0-28
2427
- name: Set up Docker Buildx
2528
uses: docker/setup-buildx-action@v3
2629
- uses: actions/setup-java@v4

.github/workflows/pr.yml

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
fetch-depth: 0
1616
- name: Set up QEMU
1717
uses: docker/setup-qemu-action@v3
18+
with:
19+
## Temporary due to bug in qemu: https://github.com/docker/setup-qemu-action/issues/198
20+
image: tonistiigi/binfmt:qemu-v7.0.0-28
1821
- name: Set up Docker Buildx
1922
uses: docker/setup-buildx-action@v3
2023
- uses: actions/setup-java@v4

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
fetch-depth: 0
2020
- name: Set up QEMU
2121
uses: docker/setup-qemu-action@v3
22+
with:
23+
## Temporary due to bug in qemu: https://github.com/docker/setup-qemu-action/issues/198
24+
image: tonistiigi/binfmt:qemu-v7.0.0-28
2225
- name: Set up Docker Buildx
2326
uses: docker/setup-buildx-action@v3
2427
- uses: actions/setup-java@v4

0 commit comments

Comments
 (0)