Skip to content

Commit 174fe85

Browse files
committed
Merge pull request #1530 from bettio/run-qemu-on-ubuntu-22.04
Run qemu on Ubuntu 22.04 See also: - actions/runner-images#11471 - docker/setup-qemu-action#188 - docker/setup-qemu-action#198 Upgrading to QEMU v8.1.5 doesn't seem to help, so closes #1529 I runt the CI multiple times and it always worked, so I think this downgrade really "fixes" the issue. These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
2 parents a7dbecd + 2383528 commit 174fe85

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build-and-test-other.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ jobs:
6363

6464
build-and-test-other:
6565
needs: compile_tests
66-
runs-on: ubuntu-24.04
66+
# GCC on qemu segfaults on s390x and arm64v8 when using 24.04
67+
# See also https://github.com/actions/runner-images/issues/11471
68+
runs-on: ubuntu-22.04
6769

6870
strategy:
6971
fail-fast: false

0 commit comments

Comments
 (0)