Skip to content

Commit 44f9ea7

Browse files
authored
build: workaround for segfaults when building dev container (#14500)
Signed-off-by: Mason Malone <[email protected]>
1 parent cb39b3e commit 44f9ea7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/devcontainer.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,15 @@ permissions:
2626

2727
jobs:
2828
build:
29-
runs-on: ubuntu-24.04
29+
runs-on: ubuntu-22.04
3030
if: github.repository == 'argoproj/argo-workflows'
3131
steps:
3232
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3333
- uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
34+
with:
35+
# Workaround for segfaults under arm64:
36+
# https://github.com/docker/setup-qemu-action/issues/198#issuecomment-2653791775
37+
image: tonistiigi/binfmt:qemu-v7.0.0-28
3438
- uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
3539
- name: Login to registry
3640
if: ${{ github.event_name == 'push' }}

0 commit comments

Comments
 (0)