Skip to content

Commit

Permalink
packit: try out aarch64 in TF
Browse files Browse the repository at this point in the history
  • Loading branch information
mrc0mmand committed Mar 27, 2024
1 parent 3a51e31 commit 420ace8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .packit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@ jobs:
tmt_plan: ci
targets:
- fedora-rawhide-x86_64
- fedora-rawhide-aarch64
4 changes: 2 additions & 2 deletions test/test-functions
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,9 @@ find_qemu_bin() {

[[ -n "$ARCH" ]] || ARCH="$(uname -m)"
case $ARCH in
x86_64)
x86_64|aarch64)
# QEMU's own build system calls it qemu-system-x86_64
[[ -n "$QEMU_BIN" ]] || QEMU_BIN="$(command -v qemu-system-x86_64 2>/dev/null | grep '^/' -m1)"
[[ -n "$QEMU_BIN" ]] || QEMU_BIN="$(command -v "qemu-system-$ARCH" 2>/dev/null | grep '^/' -m1)"
;;
i*86)
# new i386 version of QEMU
Expand Down

0 comments on commit 420ace8

Please sign in to comment.