Skip to content

Commit

Permalink
CI: Fix OCI build for ARM by running it on Ubuntu 22
Browse files Browse the repository at this point in the history
On Ubuntu 24, this happens:

  Processing triggers for libc-bin (2.31-13+deb11u11) ...
  qemu: uncaught target signal 11 (Segmentation fault) - core dumped
  • Loading branch information
amotl committed Feb 17, 2025
1 parent 75f3ca1 commit 5b1a30b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/oci-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ env:
jobs:

oci:
runs-on: ubuntu-latest
runs-on: "ubuntu-22.04"
if: ${{ ! (startsWith(github.actor, 'dependabot') || github.event.pull_request.head.repo.fork ) }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/oci-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ env:

jobs:
build_and_test:
runs-on: ubuntu-latest
runs-on: "ubuntu-22.04"

steps:
- name: Acquire sources
Expand Down

0 comments on commit 5b1a30b

Please sign in to comment.