Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/unit-test-on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ jobs:
- { target_arch: amd64, kernel: 6.9.1 }
- { target_arch: amd64, kernel: 6.12.16 }
- { target_arch: amd64, kernel: 6.16 }
- { target_arch: amd64, kernel: 6.18 }

# ARM64 (NOTE: older ARM64 kernels are not available in Cilium repos)
- { target_arch: arm64, kernel: 6.6.31 }
- { target_arch: arm64, kernel: 6.8.4 }
- { target_arch: arm64, kernel: 6.9.1 }
- { target_arch: arm64, kernel: 6.12.16 }
# qemu has a bug that prevents booting the following kernel on ARM,
# fixed in qemu 9.2
#- { target_arch: arm64, kernel: 6.16 }
- { target_arch: arm64, kernel: 6.16 }
- { target_arch: arm64, kernel: 6.18 }
steps:
- name: Disable man-db
run: |
Expand Down
8 changes: 7 additions & 1 deletion support/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ case "$qemu_arch" in
bb_args+=(-a amd64)
;;
aarch64)
additionalQemuArgs+=" -machine virt -cpu max"
# Newer Linux kernels may fail to load with QEMU for arm64.
# This issue has been addressed in QEMU 9.2+ by
# https://github.com/qemu/qemu/commit/1505b651fdbd9af59a4a90876a62ae7ea2d4cd39.
#
# To test newer Linux kernels with older QEMU versions, a dedicated,
# unaffected CPU should be set for the QEMU configuration.
additionalQemuArgs+=" -machine virt -cpu cortex-a72"
bb_args+=(-a arm64)
;;
esac
Expand Down