Skip to content

Commit 843be82

Browse files
authored
Downgrade runner image in docker.build.yaml
… to hopefully fix segfault issues with qemu
1 parent b89f86c commit 843be82

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/docker.build.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
13+
# Downgrade due to segfault issus with qemu
14+
runs-on: ubuntu-22.04
1415
steps:
1516
- uses: actions/checkout@v4
1617
with:
@@ -53,12 +54,6 @@ jobs:
5354
- name: Set up QEMU
5455
id: qemu
5556
uses: docker/setup-qemu-action@v3
56-
with:
57-
# setup-qemu-action by default uses tonistiigi/binfmt:latest,
58-
# which was out of date, see https://github.com/tonistiigi/binfmt/issues/165.
59-
# This causes seg faults during build.
60-
# Now it has been updated, but still causes segfaults.
61-
image: tonistiigi/binfmt:qemu-v8.1.5
6257

6358
- name: Set up Docker Buildx
6459
id: buildx

0 commit comments

Comments
 (0)